Authentication
Authenticate with API key
Exchange a NachoNacho API key for a short-lived JWT.
Authentication Flow
- Obtain an API key from your NachoNacho account dashboard (format: NN_live_<key>)
- Call POST /auth with your API key to receive a short-lived JWT
- Use that JWT as a Bearer token on all subsequent requests
post/auth
Request body
Example request
{
"apiKey": "NN_live_9W..."
}Response
JWT token issued successfully
Example response
{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}Changes
No recorded changes to this endpoint across all 1 revision of this API.