Skip to main content
POST
/
get_auth_token
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"
}

Body

api_key
string
required

Response

data
object
required
message
string
required
status
enum<string>
required
  • success - success
Available options:
success