AXIMUR Claim Verification API uses Bearer Token authentication with API keys.
Start API Access — $49/moInclude the API key in the Authorization header on every request:
Authorization: Bearer YOUR_API_KEY
curl -X POST https://api.aximur.com/v1/verify \
-H "Authorization: Bearer sk_live_abc123..." \
-H "Content-Type: application/json" \
-d '{"claim": "...", "grounding_source": "..."}'
| Status | Code | Meaning |
|---|---|---|
| 401 | unauthorized |
Missing, invalid, or revoked API key. |
| 403 | subscription_inactive |
Subscription cancelled, expired, or payment failed. |
| 429 | rate_limited |
Request rate exceeded. See Rate Limits. |
The Standard tier ($49/mo) is rate-limited. Rate limit headers are included in responses:
X-RateLimit-Limit: Request limit for the windowX-RateLimit-Remaining: Requests remainingX-RateLimit-Reset: Unix timestamp when the window resetsExceeding limits returns 429 Too Many Requests with a Retry-After header (seconds).