Skip to main content
GET
/
v1
/
keys
List all API keys for the authenticated user
curl --request GET \
  --url https://api.urltodata.ai/v1/keys \
  --header 'Authorization: Bearer <token>'
{
  "keys": [
    {
      "keyId": "<string>",
      "name": "<string>",
      "createdAt": 123,
      "lastUsedAt": 123,
      "revokedAt": 123,
      "scopes": [
        "account:read"
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.urltodata.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
default:your-api-key
required

API key as Bearer token (e.g. Bearer mp_abc123_secret)

Response

API key list

keys
object[]