---
title: "Retrieve the JSON Web Key Set of the instance"
method: GET
path: "/jwks"
tags: ["JWKS"]
---

# Retrieve the JSON Web Key Set of the instance

`GET /jwks`

Retrieve the JSON Web Key Set of the instance

## Response `200`

Get the JSON Web Key Set

- JWKS
  - `keys` union[]
    - union
      - JWKSEd25519PublicKey
        - `kid` string, required
        - `alg` string, required
        - `use` string, required
        - `kty` 'OKP', required
        - `crv` 'Ed25519', required
        - `x` string, required
        - `x5c` string[]
        - `x5t` string
        - `x5t#S256` string
        - `x5u` string
      - JWKSEcdsaPublicKey
        - `kid` string, required
        - `alg` string, required
        - `use` string, required
        - `kty` 'EC', required
        - `crv` string, required
        - `x` string, required
        - `y` string, required
        - `x5c` string[]
        - `x5t` string
        - `x5t#S256` string
        - `x5u` string
      - JWKSRsaPublicKey
        - `kid` string, required
        - `alg` string, required
        - `use` string, required
        - `kty` 'RSA', required
        - `n` string, required
        - `e` string, required
        - `x5c` string[]
        - `x5t` string
        - `x5t#S256` string
        - `x5u` string
      - JWKSEd25519PrivateKey
        - `kid` string, required
        - `alg` string, required
        - `use` string, required
        - `kty` 'OKP', required
        - `crv` 'Ed25519', required
        - `x` string, required
        - `d` string, required
        - `x5c` string[]
        - `x5t` string
        - `x5t#S256` string
        - `x5u` string
      - JWKSEcdsaPrivateKey
        - `kid` string, required
        - `alg` string, required
        - `use` string, required
        - `kty` 'EC', required
        - `crv` string, required
        - `x` string, required
        - `y` string, required
        - `d` string, required
        - `x5c` string[]
        - `x5t` string
        - `x5t#S256` string
        - `x5u` string
      - JWKSRsaPrivateKey
        - `kid` string, required
        - `alg` string, required
        - `use` string, required
        - `kty` 'RSA', required
        - `n` string, required
        - `e` string, required
        - `d` string, required
        - `p` string, required
        - `q` string, required
        - `dp` string
        - `dq` string
        - `qi` string
        - `x5c` string[]
        - `x5t` string
        - `x5t#S256` string
        - `x5u` string
      - JWKSSymmetricKey
        - `kid` string, required
        - `alg` string, required
        - `use` string, required
        - `kty` 'oct', required
        - `k` string, required
        - `x5c` string[]
        - `x5t` string
        - `x5t#S256` string
        - `x5u` string

---

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