← Back to Documentation

Authentication

AXIMUR Claim Verification API uses Bearer Token authentication with API keys.

Start API Access — $49/mo

Getting an API Key

  1. Subscribe: https://buy.stripe.com/eVq3cxd9m0Ws5X70IwfIs04
  2. Receive Key: After purchase, you will receive an API key via email at the address used for checkout (typically within minutes).
  3. Immediate Access: Your key is active immediately — no approval wait time.
  4. Keep Secure: Store your API key server-side in environment variables or a secrets manager.

Using the API Key

Include the API key in the Authorization header on every request:

Authorization: Bearer YOUR_API_KEY

Example (cURL)

curl -X POST https://api.aximur.com/v1/verify \
  -H "Authorization: Bearer sk_live_abc123..." \
  -H "Content-Type: application/json" \
  -d '{"claim": "...", "grounding_source": "..."}'

Security Best Practices

Error Responses

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.

Rate Limits

The Standard tier ($49/mo) is rate-limited. Rate limit headers are included in responses:

Exceeding limits returns 429 Too Many Requests with a Retry-After header (seconds).

Start API Access — $49/mo

Support


← Back to Documentation