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

# GET /v1/mandate/jwks

> Public-key set used to verify Inviolet-signed mandate JWTs.

Public-key set used to verify Inviolet-signed mandate JWTs.

## Request

```http theme={"dark"}
GET /v1/mandate/jwks
```

<Note>No auth required. Cache-control header is `public, max-age=60`.</Note>

## Response (200 OK)

```json theme={"dark"}
{
  "keys": [
    {
      "kty": "RSA",
      "kid": "v1-2026-04",
      "alg": "RS256",
      "use": "sig",
      "n": "...",
      "e": "AQAB"
    }
  ]
}
```

## Use

Configure your credential broker or downstream verifier with this URL. For
Vault: `auth-jwt`'s `jwks_url`. For Conjur: the `authn-jwt` service id's
`jwks_uri`.
