Docs
Reference

Read every value in scope in one request

Returns the whole environment as one flat object.

GET/api/v1/bulk-read-secrets

Returns the whole environment as one flat object. It exists for pullers that cannot make a request per key, such as External Secrets Operator's webhook provider. It costs one rate-limit token per value opened, the same price as reading them one at a time.

AuthorizationBearer <token>

A machine credential, sent as Authorization: Bearer pck_.... Issue one from the console, or get a short-lived one from an exchange under auth.

In: header

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/api/v1/bulk-read-secrets"
{  "values": {    "property1": "string",    "property2": "string"  },  "skipped": [    "string"  ]}