cURL
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.
Your developer secret API key (mem_...).
Optional requested token lifetime in seconds (server may override).
3600
Successfully created JWT token.
The JWT bearer token.
The ISO 8601 timestamp when the token expires.
"Bearer"