> ## Documentation Index
> Fetch the complete documentation index at: https://kardow.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List Secrets

> List stored secret names and dates — values are never returned

Returns the names and timestamps of every secret stored for your organization.
Values are write-only by design: no API surface can read them back.

## Examples

```bash cURL theme={null}
curl --request GET \
  --url "https://api.kardow.com/secrets" \
  --header "x-api-key: your-api-key-here"
```

## Response

```json theme={null}
{
  "data": [
    {
      "name": "pdl_api_key",
      "created_at": "2026-07-27T14:03:11.000Z",
      "updated_at": "2026-07-27T14:03:11.000Z"
    },
    {
      "name": "webhook_apollo_signing",
      "created_at": "2026-07-27T14:05:42.000Z",
      "updated_at": "2026-07-27T14:05:42.000Z"
    }
  ]
}
```

Reference any of these in feature config as `vault:<name>` (e.g.
`vault:pdl_api_key`).
