Skip to main content
GET
/
api
/
api-keys
List API keys
curl --request GET \
  --url https://api.userintuition.ai/api/api-keys \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "key_prefix": "ui_sk_aBcDeF",
    "name": "Production MCP Key",
    "created_by": "user_abc123",
    "created_at": "2026-04-08T12:00:00Z",
    "last_used_at": "2026-04-09T09:30:00Z"
  }
]

Documentation Index

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

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

Authorizations

Authorization
string
header
required

Authenticate with an API key (prefixed ui_sk_) or a JWT token from the dashboard.

Response

List of active API keys

id
string
required

Unique identifier for the API key record

key_prefix
string
required

First 12 characters of the key for identification

name
string
required

Human-readable label for the key

created_by
string
required

User ID of the key creator

created_at
string<date-time>
required

When the key was created

last_used_at
string<date-time> | null

When the key was last used for authentication