SPAN Auth API

The Auth API from SPAN — 3 operation(s) for auth.

Operations 4

POST /api/v1/auth/register Generate Jwt #
GET /api/v1/auth/clients Get All Clients #
GET /api/v1/auth/clients/{name} Get Client #
DELETE /api/v1/auth/clients/{name} Delete Client #

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/span-io-auth-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

span-io-auth-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Span Auth API
  description: Span Panel REST API
  version: v1
tags:
- name: Auth
paths:
  /api/v1/auth/register:
    post:
      summary: Generate Jwt
      operationId: generate_jwt_api_v1_auth_register_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AuthIn'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
      tags:
      - Auth
  /api/v1/auth/clients:
    get:
      summary: Get All Clients
      operationId: get_all_clients_api_v1_auth_clients_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Clients'
      security:
      - HTTPBearer: []
      tags:
      - Auth
  /api/v1/auth/clients/{name}:
    get:
      summary: Get Client
      operationId: get_client_api_v1_auth_clients__name__get
      parameters:
      - required: true
        schema:
          title: Name
          type: string
        name: name
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Client'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
      tags:
      - Auth
    delete:
      summary: Delete Client
      operationId: delete_client_api_v1_auth_clients__name__delete
      parameters:
      - required: true
        schema:
          title: Name
          type: string
        name: name
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Client'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
      tags:
      - Auth
components:
  schemas:
    ValidationError:
      title: ValidationError
      required:
      - loc
      - msg
      - type
      type: object
      properties:
        loc:
          title: Location
          type: array
          items:
            type: string
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
    Client:
      title: Client
      required:
      - allowed_endpoint_groups
      type: object
      properties:
        description:
          title: Description
          type: string
        issued_at:
          title: Issued At
          type: integer
        allowed_endpoint_groups:
          $ref: '#/components/schemas/AllowedEndpointGroups'
    Clients:
      title: Clients
      required:
      - clients
      type: object
      properties:
        clients:
          title: Clients
          type: object
          additionalProperties:
            $ref: '#/components/schemas/Client'
    HTTPValidationError:
      title: HTTPValidationError
      type: object
      properties:
        detail:
          title: Detail
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
    AuthOut:
      title: AuthOut
      required:
      - accessToken
      - tokenType
      - iatMs
      type: object
      properties:
        accessToken:
          title: Accesstoken
          type: string
        tokenType:
          title: Tokentype
          type: string
        iatMs:
          title: Iatms
          type: integer
    AuthIn:
      title: AuthIn
      required:
      - name
      type: object
      properties:
        name:
          title: Name
          type: string
        description:
          title: Description
          type: string
        otp:
          title: Otp
          type: string
        dashboardPassword:
          title: Dashboardpassword
          type: string
    AllowedEndpointGroups:
      title: AllowedEndpointGroups
      required:
      - delete
      - get
      - post
      - push
      type: object
      properties:
        delete:
          title: Delete
          type: array
          items:
            type: string
        get:
          title: Get
          type: array
          items:
            type: string
        post:
          title: Post
          type: array
          items:
            type: string
        push:
          title: Push
          type: array
          items:
            type: string
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer