v1

latestOpenAPI 3.0.12026-07-245277551.2 MB
Payment SDK API Key Management

List API Keys

Retrieve a paginated list of API keys, optionally filtered by property or revocation status.

Use next_page_token from the response as page_token in the next request to paginate. The secret field is never included in list responses.

get/v1/keys

Query parameters

property_idsstring[]

Filter by property IDs scoped to your JWT

[
  12345
]
include_revokedboolean

Include revoked keys in the response. Defaults to false.

page_sizeinteger nullable
Example:25

Number of keys per page (1-100). Defaults to 50.

page_tokenstring nullable

Cursor token from a previous response's next_page_token for fetching the next page.

Response

Successful operation

next_page_tokenstring nullable

Token for the next page, or null if no more results.

Example response

{
  "api_keys": [
    {
      "identity": "pek_a1b2c3d4e5f6g7h8i9j0k1l2",
      "property_ids": [
        12345
      ],
      "status": "active",
      "created_at": "2026-03-10T14:30:00.000000Z"
    }
  ]
}