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

# Chaves públicas (JWKS)

> Chaves EdDSA para validar access tokens JWT localmente.



## OpenAPI

````yaml /es/oauth-api/api-reference/openapi-oauth.json get /.well-known/jwks.json
openapi: 3.0.3
info:
  title: Notifique API. OAuth 2.1
  description: >-
    Authorization Server OAuth 2.1 con PKCE obligatorio. Registra clientes,
    autoriza usuarios y obtén access tokens para `/v1/*`. Issuer:
    `https://api.notifique.dev`.
  version: 1.0.0
servers:
  - url: https://api.notifique.dev
    description: Produção
security: []
tags:
  - name: Metadados
    description: Discovery RFC 8414, chaves públicas JWT e metadados do recurso MCP.
  - name: OAuth
    description: Registro de clientes, autorização, tokens e revogação.
  - name: OAuth Apps
    description: Apps OAuth do workspace (painel Developer → OAuth Apps).
paths:
  /.well-known/jwks.json:
    get:
      tags:
        - Metadados
      summary: Chaves públicas (JWKS)
      description: Chaves EdDSA para validar access tokens JWT localmente.
      operationId: ntfOauth_getJwks
      responses:
        '200':
          description: JSON Web Key Set.
          content:
            application/json:
              example:
                keys:
                  - kty: OKP
                    crv: Ed25519
                    kid: ntf-oauth-2026
                    use: sig
                    alg: EdDSA
              schema:
                $ref: '#/components/schemas/ntfOauth_GetJwksResponse'
components:
  schemas:
    ntfOauth_GetJwksResponse:
      type: object
      properties:
        keys:
          type: array
          items:
            type: object
            properties:
              kty:
                type: string
              crv:
                type: string
              kid:
                type: string
              use:
                type: string
              alg:
                type: string
      example:
        keys:
          - kty: string
            crv: string
            kid: clxx...
            use: string
            alg: string

````