---
title: "Get Public Keys (JWKS)"
method: GET
path: "/.well-known/jwks.json"
tags: ["Auth"]
---

# Get Public Keys (JWKS)

`GET /.well-known/jwks.json`

Provides the JSON Web Key Set (JWKS) for verifying JWTs issued by this service.

## Response `200`

A JSON Web Key Set (JWKS) containing a list of public keys.

- Jwks — A JSON Web Key Set (JWKS) containing a list of public keys.
  - `keys` object[], required — A list of JSON Web Keys.
    - `alg` string — The specific cryptographic algorithm used with the key (e.g., 'RS256').
    - `e` string — The exponent for the RSA public key.
    - `kid` string — The unique identifier for the key.
    - `kty` string — The key type, identifying the algorithm family (e.g., 'RSA').
    - `n` string — The modulus for the RSA public key.
    - `use` string — The intended use of the public key (e.g., 'sig' for signature).

## Other responses

- `500` — An error response from the API

---

[API](https://skmtc.net/steel-dev/apis/steel-api.md) · [All operations](https://skmtc.net/steel-dev/apis/steel-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/steel-dev/steel-api/revisions/2248d956188a/schema)
