Skip to main content
GET
/
v1
/
user
/
api-keys
List API Keys
curl --request GET \
  --url https://api.convallax.com/v1/user/api-keys \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "apiKeys": [
    {
      "id": "8f3c2b1a-1d2e-4c3b-9a8f-6e5d4c3b2a1f",
      "name": "production-bot",
      "keyPrefix": "mk_live_9f8e7d6",
      "createdAt": "2026-06-16T18:05:00.000Z",
      "lastUsedAt": null,
      "revokedAt": null
    }
  ]
}
List your active (non-revoked) API keys. For security, the secret is never returned — only a short non-secret keyPrefix for identification, plus metadata. Revoked keys are omitted.

Authorizations

Authorization
string
header
required

Privy access token from the Convallax dashboard, sent as Authorization: Bearer <jwt>.

Response

Active API keys

success
boolean
apiKeys
object[]