Skip to main content
GET
/
auth
/
api-keys
Get active API key
curl --request GET \
  --url https://api.limitless.exchange/auth/api-keys
{
  "keyId": "key_abc123def456",
  "createdAt": "2025-06-15T10:30:00Z",
  "lastUsedAt": "2025-06-16T08:00:00Z"
}

Response

200 - application/json
object | null

Active API key metadata, or null if no active key exists

keyId
string

Unique identifier for the API key

Example:

"key_abc123def456"

createdAt
string<date-time>

When the key was created

Example:

"2025-06-15T10:30:00Z"

lastUsedAt
string<date-time> | null

When the key was last used

Example:

"2025-06-16T08:00:00Z"