> ## Documentation Index
> Fetch the complete documentation index at: https://humanity-eaeda8f6.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get well knownjwksjson



## OpenAPI

````yaml api-reference/openapi.json get /.well-known/jwks.json
openapi: 3.1.0
info:
  version: 0.1.0
  title: hp-public-dev-api-server
  description: NestJS CQRS + TDD base for Humanity Public Dev API
servers:
  - url: https://api.sandbox.humanity.org/v2
    description: Sandbox environment for development and testing
  - url: https://api.humanity.org/v2
    description: Production environment
security: []
tags: []
paths:
  /.well-known/jwks.json:
    get:
      tags: []
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonWebKeySet'
components:
  schemas:
    JsonWebKeySet:
      type: object
      properties:
        keys:
          type: array
          items:
            $ref: '#/components/schemas/JwksKey'
      required:
        - keys
    JwksKey:
      type: object
      properties:
        kty:
          type: string
        use:
          const: sig
        kid:
          type: string
        alg:
          type: string
        'n':
          type: string
        e:
          type: string
      required:
        - kty
        - use
        - kid
        - alg
        - 'n'
        - e

````