Skip to main content
GET
/
v1
/
api-keys
List API Keys
curl --request GET \
  --url https://api.deepxl.ai/v1/api-keys/ \
  --header 'Authorization: Bearer <token>'
{
  "count": 1,
  "data": [
    {
      "id": 123,
      "name": "Production API Key",
      "apiKey": "dxl_1234567890abcdef",
      "createdOn": 1725795600,
      "createdOnISO": "2024-09-08T10:00:00",
      "modifiedOn": 1725795600,
      "modifiedOnISO": "2024-09-08T10:00:00",
      "createdBy": "user_123abc",
      "lastUsed": 1725811800,
      "lastUsedISO": "2024-09-08T14:30:00",
      "scope": "analysis:read,analysis:write"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

API keys retrieved successfully