Spot AI Appliances API

The Appliances API from Spot AI — 2 operation(s) for appliances.

Operations 2

GET /v1/appliances/{applianceId} Get appliance information #
GET /v1/appliances Get a paginated list of appliances #

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/spot-ai-appliances-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

spot-ai-appliances-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Spot AI — Spot Connect (beta) Analytics Appliances API
  version: 1.10.0
  description: Spot AI Developer API
  contact:
    name: Spot AI
    url: https://developers.spot.ai/
servers:
- url: https://dev-api.spot.ai/
tags:
- name: Appliances
paths:
  /v1/appliances/{applianceId}:
    get:
      operationId: GetAppliance
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Appliance'
              examples:
                Example 1:
                  value:
                    id: 1
                    serial: sn7-123456
                    last_online: '2025-12-16T10:30:00.000Z'
                    location_id: 1
                    location_name: Location 1
                    license_sku: LIC-IVR-A12-B34
                    firmware_version: 1.0.0
                    status: online
        '404':
          description: Appliance {applianceId} not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
              examples:
                Example 1:
                  value:
                    message: Appliance {applianceId} not found
                    name: NotFound
      description: Returns information about a single appliance.
      summary: Get appliance information
      tags:
      - Appliances
      security:
      - bearer_security: []
      parameters:
      - description: '- Id of the appliance'
        in: path
        name: applianceId
        required: true
        schema:
          format: int32
          type: integer
  /v1/appliances:
    get:
      operationId: GetAppliances
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetAppliancesQueryResult'
              examples:
                Example 1:
                  value:
                  - id: 1
                    serial: sn7-123456
                    last_online: '2025-12-16T10:30:00.000Z'
                    location_id: 1
                    location_name: Location 1
                    license_sku: SKU-123456
                    firmware_version: 1.0.0
                    status: online
                  - id: 2
                    serial: sn7-123457
                    last_online: '2025-12-16T10:30:00.000Z'
                    location_id: 2
                    location_name: Location 2
                    license_sku: SKU-123457
                    firmware_version: 1.0.0
                    status: online
      description: Returns a paginated list of appliances for an org. Response contains a cursor for pagination.
      summary: Get a paginated list of appliances
      tags:
      - Appliances
      security:
      - bearer_security: []
      parameters:
      - description: '- Cursor for pagination'
        in: query
        name: cursor
        required: false
        schema:
          default: ''
          type: string
      - description: '- Number of appliances to return. Max 100'
        in: query
        name: limit
        required: false
        schema:
          default: 50
          format: double
          type: number
      - description: '- Location ids to filter by. When present, only returns appliances associated with the indicated locations.'
        in: query
        name: location_ids
        required: false
        schema:
          type: array
          items:
            type: integer
            format: int32
components:
  schemas:
    Appliance:
      properties:
        id:
          type: number
          format: double
          description: The id of the appliance
          example: 1
        serial:
          type: string
          description: The serial number of the appliance
          example: sn7-123456
        status:
          $ref: '#/components/schemas/ApplianceStatus'
          description: The status of the appliance
          example: online
        last_online:
          type:
          - string
          - 'null'
          format: date
          description: The last online timestamp of the appliance
        location_id:
          type: number
          format: double
          description: The location id of the appliance
          example: 1
        location_name:
          type: string
          description: The name of the location
          example: Main Location
        license_sku:
          type: string
          description: The license sku of the appliance
          example: '1234567890'
        firmware_version:
          type:
          - string
          - 'null'
          description: The firmware version of the appliance
          example: 1.0.0
      required:
      - id
      - serial
      - status
      - last_online
      - location_id
      - location_name
      - license_sku
      - firmware_version
      type: object
      additionalProperties: false
    ApplianceStatus:
      enum:
      - online
      - offline
      type: string
    GetAppliancesQueryResult:
      properties:
        prev:
          type:
          - string
          - 'null'
        next:
          type:
          - string
          - 'null'
        appliances:
          items:
            $ref: '#/components/schemas/Appliance'
          type: array
      required:
      - prev
      - next
      - appliances
      type: object
      additionalProperties: false
    ApiErrorResponse:
      properties:
        data: {}
        statusCode:
          type: number
          format: double
        message:
          type: string
        name:
          type: string
      required:
      - message
      - name
      type: object
  securitySchemes:
    bearer_security:
      type: http
      scheme: bearer