Get started with the AXIMUR claim verification API in minutes.
Start API Access — $49/mocurl -X POST https://api.aximur.com/v1/verify \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"claim": "The global average temperature in 2023 was 1.45°C above pre-industrial levels.",
"grounding_source": "According to the WMO State of the Global Climate 2023 report, the global average temperature in 2023 was 1.45°C above the pre-industrial baseline (1850–1900)."
}'
const response = await fetch('https://api.aximur.com/v1/verify', {
method: 'POST',
headers: {
'Authorization': `Bearer ${process.env.AXIMUR_API_KEY}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
claim: "The global average temperature in 2023 was 1.45°C above pre-industrial levels.",
grounding_source: "According to the WMO State of the Global Climate 2023 report, the global average temperature in 2023 was 1.45°C above the pre-industrial baseline (1850–1900)."
})
});
const result = await response.json();
console.log(result.verdict); // SUPPORTED, UNSUPPORTED, or UNCERTAIN
import requests
import os
response = requests.post(
'https://api.aximur.com/v1/verify',
headers={
'Authorization': f"Bearer {os.environ['AXIMUR_API_KEY']}",
'Content-Type': 'application/json'
},
json={
'claim': 'The global average temperature in 2023 was 1.45°C above pre-industrial levels.',
'grounding_source': 'According to the WMO State of the Global Climate 2023 report, the global average temperature in 2023 was 1.45°C above the pre-industrial baseline (1850–1900).'
}
)
result = response.json()
print(result['verdict']) # SUPPORTED, UNSUPPORTED, or UNCERTAIN