---
title: "Jwks Endpoint"
method: GET
path: "/oauth/pg/jwks"
tags: ["oauth-provider", "oauth-provider"]
---

# Jwks Endpoint

`GET /oauth/pg/jwks`

JSON Web Key Set (JWKS) endpoint.

Returns public keys for JWT signature verification.
Cached in Redis with 24h TTL.

Returns:
    JSONResponse: JWKS document containing public keys

Example Response:
    {
        "keys": [
            {
                "kty": "RSA",
                "use": "sig",
                "kid": "oauth-rsa-key-2024",
                "n": "...",
                "e": "AQAB"
            }
        ]
    }

## Response `200`

Successful Response

- unknown

---

[API](https://skmtc.net/priority-guard/apis/priority-guardian.md) · [All operations](https://skmtc.net/priority-guard/apis/priority-guardian/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/priority-guard/priority-guardian/revisions/8579218b716d/schema)
