Axerity Platform

Authentication

API authentication guide

All API requests require authentication using an API key.

Beta

The API is currently in beta. Public launch is on December 7th, 2025.

Getting Your API Key

Sign In

Log in to your account at axerity.com/auth.

Generate API Key

Click "Generate API Key" and copy your key. Store it securely — you won't be able to see it again.

Keep Your Key Secret

Never expose your API key in client-side code or public repositories.

Using Your API Key

Include your API key in the Authorization header:

curl -X POST https://axerity.com/api/v1/chat \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{ "model": "openai/gpt-oss-120b", "messages": [...] }'

Rate Limits

TierRequests/Minute
Free60
Pro120

Exceeding rate limits returns a 429 Too Many Requests error.

On this page