Skip to main content
GET
/
encryption-keys
Retrieve a list of encryption keys
curl --request GET \
  --url https://api.eu.bronto.io/encryption-keys \
  --header 'X-BRONTO-API-KEY: <api-key>'
{
  "keys": [
    {
      "org_id": "<string>",
      "id": "<string>",
      "name": "<string>",
      "aws_kms": {
        "alias_arn": "<string>",
        "region": "<string>"
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.bronto.io/llms.txt

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

Authorizations

X-BRONTO-API-KEY
string
header
required

Query Parameters

provider
enum<string>

Filter keys by provider (e.g., AWS_KMS)

Available options:
AWS_KMS
limit
integer
default:50

Maximum number of encryption keys to return (default 50, max 100)

Required range: x <= 100

Response

A list of encryption keys

keys
object[]