Skip to main content
GET
/
api-keys
List API keys
curl --request GET \
  --url https://api.pamhq.com/v1/api-keys \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "key_prefix": "<string>",
      "last_used_at": "2023-11-07T05:31:56Z",
      "expires_at": "2023-11-07T05:31:56Z",
      "revoked_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "request_id": "<string>",
    "pagination": {
      "cursor": "<string>",
      "has_more": true
    }
  }
}

Documentation Index

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

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

Authorizations

Authorization
string
header
default:pk_live_your_api_key
required

API key provided as Authorization: Bearer <key>.

Query Parameters

limit
integer
default:20

Maximum number of records to return.

Required range: 1 <= x <= 100
cursor
string

Pagination cursor from the previous response.

Response

API keys returned

data
object[]
meta
object