Skip to content
Atheer
Home/API Reference

Resources

API Reference

Integrate Atheer into your systems. RESTful API with JSON responses.

Base URL:https://api.atheer.ai/v1
POST/auth/token

Generate Access Token

Exchange your API key for a short-lived access token. All subsequent API requests must include this token in the Authorization header.

Requires Bearer token in Authorization header

Parameters

api_keyrequired
stringYour Atheer API key from Settings → API
application/jsonJSON
{
  "api_key": "ak_live_xxxxxxxxxxxxxxxxxxxx"
}

cURL

curl -X POST \
  https://api.atheer.ai/v1/auth/token \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json"