SPAN Status API

The Status API from SPAN — 1 operation(s) for status.

Operations 1

GET /api/v1/status System Status #

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-status-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-status-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Span Auth Status API
  description: Span Panel REST API
  version: v1
tags:
- name: Status
paths:
  /api/v1/status:
    get:
      summary: System Status
      operationId: system_status_api_v1_status_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StatusOut'
      security:
      - HTTPBearer: []
      tags:
      - Status
components:
  schemas:
    DoorState:
      title: DoorState
      enum:
      - UNKNOWN
      - OPEN
      - CLOSED
      type: string
      description: An enumeration.
    NetworkStatus:
      title: NetworkStatus
      required:
      - eth0Link
      - wlanLink
      - wwanLink
      type: object
      properties:
        eth0Link:
          title: Eth0Link
          type: boolean
        wlanLink:
          title: Wlanlink
          type: boolean
        wwanLink:
          title: Wwanlink
          type: boolean
    SoftwareStatus:
      title: SoftwareStatus
      required:
      - firmwareVersion
      - updateStatus
      - env
      type: object
      properties:
        firmwareVersion:
          title: Firmwareversion
          type: string
        updateStatus:
          title: Updatestatus
          type: string
        env:
          title: Env
          type: string
    SystemStatus:
      title: SystemStatus
      required:
      - manufacturer
      - serial
      - model
      - doorState
      - proximityProven
      - uptime
      type: object
      properties:
        manufacturer:
          title: Manufacturer
          type: string
        serial:
          title: Serial
          type: string
        model:
          title: Model
          type: string
        doorState:
          $ref: '#/components/schemas/DoorState'
        proximityProven:
          title: Proximityproven
          type: boolean
        uptime:
          title: Uptime
          type: integer
    StatusOut:
      title: StatusOut
      required:
      - software
      - system
      - network
      type: object
      properties:
        software:
          $ref: '#/components/schemas/SoftwareStatus'
        system:
          $ref: '#/components/schemas/SystemStatus'
        network:
          $ref: '#/components/schemas/NetworkStatus'
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer