Inrupt Jsonkeys API

Public JSON Web Keys

Operations 1

GET /jwks List JSON Web Keys for this server #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/inrupt-jsonkeys-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

inrupt-jsonkeys-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Inrupt Change Notifications Jsonkeys API
  version: 2.7.1
  description: Public JSON Web Keys
servers:
- url: https://notification.inrupt.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: jsonkeys
  description: Public JSON Web Keys
paths:
  /jwks:
    get:
      summary: List JSON Web Keys for this server
      operationId: getJsonWebKeySet
      tags:
      - jsonkeys
      responses:
        '200':
          description: A JSON object that represents a set of JSON Web Keys
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonWebKeySet'
components:
  schemas:
    JsonWebKeySet:
      type: object
      description: A set of JSON Web Keys
      properties:
        keys:
          type: array
          items:
            $ref: '#/components/schemas/JsonWebKey'
          description: A collection of JSON Web keys
    JsonWebKey:
      type: object
      description: A single JSON Web Key
      properties:
        kty:
          type: string
          description: The cryptographic algorithm family
        use:
          type: string
          description: The intended use of the public key
        alg:
          type: string
          description: The algorithm intended for use with the key
        kid:
          type: string
          description: The key ID is used to match a specific key
        x:
          type: string
          description: For EC keys, a base64 encoding of the x coordinate
        y:
          type: string
          description: For EC keys, a base64 encoding of the y coordinate
        crv:
          type: string
          description: For EC keys, a cryptographic curve used with the key
        n:
          type: string
          description: For RSA keys, a base64 encoding of the modulus value
        e:
          type: string
          description: For RSA keys, a base64 encoding of the exponent value
        x5c:
          type: array
          items:
            type: string
          description: An X.509 certificate for the key
  securitySchemes:
    SolidAuthentication:
      type: http
      scheme: bearer
      bearerFormat: JWT