List Keys

GET /keys?owner={userId}&limit={limit}&paginationToken={token}

Retrieves a list of keys.

Required Permissions

Name
Conditions

Keys:Read

Always Required

Parameters

Query parameters

Query parameter
Description
Type - Optional

owner

Get all delegated keys owned by an end user, either by userId or username.

String (optional)

limit

Maximum number of items to return. Default to 50.

Number (optional)

paginationToken

Opaque token used to retrieve the next page. Returned as nextPageToken from the previous request.

String (optional)

Response

Field
Description
Type - Optional

items

List of keys.

nextPageToken

Opaque token used to retrieve the next page of items. undefined if end of the list.

String (optional)

200 Success

{
  "items": [
    {
      "id": "key-6ece3-9l565-xxxxxxxxxxxxxxxx",
      "scheme": "ECDSA",
      "curve": "secp256k1",
      "publicKey": "02660461d66a637ea2d2ee3565669ad794f51ca3e0812ff03a0fe4820a19754839",
      "status": "Active",
      "custodial": true,
      "dateCreated": "2025-03-26T20:25:52.909Z"
    },
    ...
  ],
  "nextPageToken": "eJw1jMs...z9xSinT"
}

Last updated