cURL
curl --request POST \ --url https://production.getgaana.com/api/get_auth_token \ --header 'Content-Type: application/json' \ --data ' { "api_key": "<string>" } '
{ "data": { "access_token": "<string>", "token_type": "<string>", "expires_at": 123 }, "message": "<string>", "status": "success" }
Authenticates the user with an API key and returns a JWT bearer token for accessing protected endpoints.
Show child attributes
success