Authentication
Create an API key
POST
Create an API key
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Last modified on July 7, 2026
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Need an API key? Sign in to the dashboard to get started.
curl --request POST \
--url https://api.radion.app/auth/keys \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"keyLabel": "production_read",
"audience": "<string>",
"issuer": "<string>",
"jwksUrl": "<string>",
"perSessionLimit": 123,
"publicKeyPem": "<string>"
}
'{
"keyLabel": "<string>",
"rawKey": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?
curl --request POST \
--url https://api.radion.app/auth/keys \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"keyLabel": "production_read",
"audience": "<string>",
"issuer": "<string>",
"jwksUrl": "<string>",
"perSessionLimit": 123,
"publicKeyPem": "<string>"
}
'{
"keyLabel": "<string>",
"rawKey": "<string>"
}