Skip to main content
GET
/
api
/
api-keys
List API keys
curl --request GET \
  --url https://api.example.com/api/api-keys \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "name": "<string>",
      "client_id": "<string>",
      "permissions": [
        "<string>"
      ],
      "last_used_at": "<string>",
      "created_at": "<string>",
      "created_by": "<string>"
    }
  ],
  "page": {
    "limit": 123,
    "offset": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token

Query Parameters

limit
string

Number of results to return (1-2000, default 25)

Example:

"25"

offset
string
Example:

"0"

Response

200 - application/json

List of API keys

data
object[]
required
page
object
required