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
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"