v61

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
Keys

List all Keys associated with a KeySet

List all Keys associated with a KeySet

get/v2/control-planes/{controlPlaneId}/core-entities/key-sets/{KeySetId}/keys

Path parameters

KeySetIdstring required

ID of the KeySet to lookup

Query parameters

sizeinteger

Number of resources to be returned.

offsetstring

Offset from which to return the next set of resources. Use the value of the 'offset' field from the response of a list operation as input here to paginate through all the resources

tagsstring

A list of tags to filter the list of resources on. Multiple tags can be concatenated using ',' to mean AND or using '/' to mean OR.

Response

A successful response listing Keys

nextstring

URI to the next page (may be null)

offsetstring

Offset is used to paginate through the API. Provide this value to the next list operation to fetch the next page

Example response

{
  "data": [
    {
      "id": "d958f66b-8e99-44d2-b0b4-edd5bbf24658",
      "jwk": "{\"alg\":\"RSA\",  \"kid\": \"42\",  ...}",
      "kid": "42",
      "name": "a-key",
      "pem": {
        "private_key": "-----BEGIN",
        "public_key": "-----BEGIN"
      },
      "set": {
        "id": "b86b331c-dcd0-4b3e-97ce-47c5a9543031"
      }
    }
  ]
}