English
Documentation
How to use the Orkeia AI platform
Creation of the access token
GET /authentication/generate-access-token
This endpoint is GET and does not accept a body. Send the header authorization: ApiKey <your_api_key>.
authorization: ApiKey <your_api_key>
authorization: ApiKey sk_live_xxx
{ "status": "OK", "data": { "idToken": "eyJhbGciOi...", "refreshToken": "AbCdEf...123", "expiresIn": 3600, "userId": null } }
{ "status": "ERROR", "code": "server/error", "data": null }
{ "status": "ERROR", "code": "client/error", "data": null }
curl -X GET "https://gateway.orkeia.ai/authentication/generate-access-token" -H "authorization: ApiKey sk_live_xxx"
Was this page helpful?