Skip to main content
GET
/
auth
/
keys
List the current user's API keys
curl --request GET \
  --url https://api.radion.app/auth/keys \
  --header 'Authorization: Bearer <token>'
{
  "keys": [
    {
      "createdAt": "2023-11-07T05:31:56Z",
      "keyLabel": "<string>",
      "lastUsedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "monthlyUsage": {
    "resetsAt": "2023-11-07T05:31:56Z",
    "used": 123,
    "limit": 123
  },
  "trialEndsAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

The user's API keys.

keys
object[]
required
monthlyUsage
object
required
plan
enum<string>
required
Available options:
free,
starter,
pro,
enterprise
trialEndsAt
string<date-time> | null
Last modified on July 7, 2026