Spot AI Zones API

The Zones API from Spot AI — 1 operation(s) for zones.

Operations 1

GET /v1/cameras/{camera_id}/zones Get zones #

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-zones-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-zones-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Spot AI — Spot Connect (beta) Analytics Zones 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: Zones
paths:
  /v1/cameras/{camera_id}/zones:
    get:
      operationId: GetZones
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetZonesQueryResult'
              examples:
                Example 1:
                  value:
                  - id: 1
                    name: Zone 1
                    shape:
                    - x: 30.953702290852863
                      y: 81.95704029224537
                    - x: 37.12036895751953
                      y: 72.47556333188658
                    cameraId: 1
                  - id: 2
                    name: Zone 2
                    shape:
                    - x: 42.95370229085286
                      y: 81.95704029224537
                    - x: 47.12036895751953
                      y: 72.47556333188658
                    cameraId: 1
      description: Returns a list of zones for a camera
      summary: Get zones
      tags:
      - Zones
      security:
      - bearer_security: []
      parameters:
      - in: path
        name: camera_id
        required: true
        schema:
          format: double
          type: number
components:
  schemas:
    Zone:
      properties:
        cameraId:
          type: number
          format: double
          description: The ID of the camera that the zone belongs to
          example: 1
        shape:
          $ref: '#/components/schemas/ZoneShape'
          description: The shape of the zone, defined by an array of Cartesian points (x,y)
        name:
          type: string
          description: The name of the zone
          example: Front Door
        id:
          type: number
          format: double
          description: The ID of the zone
          example: 1
      required:
      - cameraId
      - shape
      - name
      - id
      type: object
    GetZonesQueryResult:
      properties:
        zones:
          items:
            $ref: '#/components/schemas/Zone'
          type: array
      required:
      - zones
      type: object
      additionalProperties: false
    ZoneShape:
      items:
        $ref: '#/components/schemas/ZonePoint'
      type: array
    ZonePoint:
      properties:
        y:
          type: number
          format: double
        x:
          type: number
          format: double
      required:
      - y
      - x
      type: object
  securitySchemes:
    bearer_security:
      type: http
      scheme: bearer