Clerk JwtTemplates API

The JwtTemplates API from Clerk — 1 operation(s) for jwttemplates.

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/clerk-jwttemplates-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 email required.

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

OpenAPI Specification

clerk-jwttemplates-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Clerk Backend Invitations JwtTemplates API
  description: 'Clerk drop-in authentication and user management Backend API.

    Authenticated with a Bearer secret key (sk_test_... or sk_live_...).

    Provides server-side management of users, sessions, organizations,

    invitations, sign-in tokens, JWT templates, and webhooks.

    This spec covers a representative slice of the Clerk Backend API;

    the full canonical specification is published at

    https://github.com/clerk/openapi-specs.

    '
  version: v1
  contact:
    name: Clerk Developers
    url: https://clerk.com/docs/reference/backend-api
servers:
- url: https://api.clerk.com/v1
  description: Clerk production Backend API
security:
- BearerAuth: []
tags:
- name: JwtTemplates
paths:
  /jwt_templates:
    get:
      summary: List JWT templates
      operationId: listJwtTemplates
      tags:
      - JwtTemplates
      responses:
        '200':
          description: Templates
    post:
      summary: Create a JWT template
      operationId: createJwtTemplate
      tags:
      - JwtTemplates
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - name
              - claims
              properties:
                name:
                  type: string
                claims:
                  type: object
                lifetime:
                  type: integer
                allowed_clock_skew:
                  type: integer
                custom_signing_key:
                  type: boolean
                signing_algorithm:
                  type: string
      responses:
        '200':
          description: Created
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Clerk secret key (sk_test_... or sk_live_...)