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

# Jwks

> JWKS for verifying core-issued ES256 access tokens. Public keys only — the
SDK and other services fetch this to verify tokens without the signing key.
Unauthenticated by design (public keys are not secret).



## OpenAPI

````yaml /api-reference/openapi.json get /v1/auth/jwks.json
openapi: 3.1.0
info:
  title: Visceral Backend
  version: 0.2.0
  description: >-
    The Visceral backend HTTP API. SDK and ingestion endpoints authenticate with
    a workspace API key; dashboard and CLI endpoints authenticate with a user
    session token. Both are sent as `Authorization: Bearer <token>`.
servers:
  - url: https://api.visceralai.dev
security: []
paths:
  /v1/auth/jwks.json:
    get:
      tags:
        - auth
      summary: Jwks
      description: >-
        JWKS for verifying core-issued ES256 access tokens. Public keys only —
        the

        SDK and other services fetch this to verify tokens without the signing
        key.

        Unauthenticated by design (public keys are not secret).
      operationId: jwks_v1_auth_jwks_json_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Jwks V1 Auth Jwks Json Get

````