Toqio JWT validation API

The JWT validation API from Toqio — 1 operation(s) for jwt validation.

Operations 1

POST /customers/{customerId}/jwt/validate Validate JWT token #

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/toqio-jwt-validation-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

toqio-jwt-validation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Security JWT validation API
  description: JWT validation
  version: '100'
servers:
- url: https://api.sandbox.toq.io/iam/api
  description: Simulation environment
- url: https://api.toq.io/iam/api
  description: Production environment
security:
- bearer-jwt:
  - read
  - write
tags:
- name: JWT validation
paths:
  /customers/{customerId}/jwt/validate:
    post:
      tags:
      - JWT validation
      summary: Validate JWT token
      description: Validates a JWT token sent in the request body. Returns validation status and error message if invalid.
      operationId: validateJWTSecure
      parameters:
      - name: customerId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        description: JWT token to validate
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/JwtValidationRequestDTO'
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/JwtValidationDTO'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
        '500':
          description: Internal Error
      deprecated: false
      security:
      - clientCredentials: []
components:
  schemas:
    JwtValidationRequestDTO:
      title: JwtValidationRequestDTO
      type: object
      required:
      - jwt
      properties:
        jwt:
          type: string
          description: The JWT token to validate
    JwtValidationDTO:
      title: JwtValidationDTO
      type: object
      properties:
        valid:
          type: boolean
        errorMessage:
          type: string
          description: errorMessage will only provide a value if valid is false
  securitySchemes:
    bearer-jwt:
      type: oauth2
      flows:
        password:
          tokenUrl: https://api.toq.io/iam/oauth/token
          scopes: {}
    clientCredentials:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.toq.io/iam/oauth/token
          scopes: {}
x-source-pages:
- https://platform.toq.io/reference/validatejwtsecure