POST
/
auth
/
token
curl --request POST \
  --url https://api.memoram.app/api/v1/auth/token \
  --header 'Content-Type: application/json' \
  --data '{
  "api_key": "mem_71c8d4fd816f195801803cd4c801735dfbafaaba72a88eea",
  "expires_in": 3600
}'
{
  "token": "<string>",
  "expires_at": "2023-11-07T05:31:56Z",
  "token_type": "Bearer"
}

Exchange a developer API key for a short-lived JWT bearer token required for subsequent API calls.

Body

application/json

Response

200
application/json

Successfully created JWT token.

The response is of type object.