Transload Cameras API

The Cameras API from Transload — 2 operation(s) for cameras.

Operations 5

POST /v1/cameras
GET /v1/cameras
GET /v1/cameras/{cameraId}
PATCH /v1/cameras/{cameraId}
DELETE /v1/cameras/{cameraId}

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/transload-cameras-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

transload-cameras-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Pipeline Backend Admin Cameras API
  version: 0.1.0
servers:
- url: https://api.transload.io
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- bearerAuth: []
tags:
- name: Cameras
paths:
  /v1/cameras:
    post:
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                customerId:
                  type: string
                  format: uuid
                siteId:
                  type: string
                  format: uuid
                externalId:
                  type: string
                  minLength: 1
                name:
                  type: string
                  minLength: 1
                cameraType:
                  type: string
                  enum:
                  - rtsp
                  - http_snapshot
                  - other
                vendor:
                  type: string
                model:
                  type: string
                zones:
                  type: array
                  items:
                    type: string
                    minLength: 1
                metadata:
                  type: object
                  additionalProperties: {}
                intrinsics:
                  type:
                  - object
                  - 'null'
                  properties:
                    fx:
                      type: number
                    fy:
                      type: number
                    cx:
                      type: number
                    cy:
                      type: number
                    k1:
                      type: number
                      default: 0
                    k2:
                      type: number
                      default: 0
                    p1:
                      type: number
                      default: 0
                    p2:
                      type: number
                      default: 0
                    k3:
                      type: number
                      default: 0
                    imageWidth:
                      type: integer
                    imageHeight:
                      type: integer
                  required:
                  - fx
                  - fy
                  - cx
                  - cy
                  - imageWidth
                  - imageHeight
                intrinsicsUndistorted:
                  type:
                  - object
                  - 'null'
                  properties:
                    fx:
                      type: number
                    fy:
                      type: number
                    cx:
                      type: number
                    cy:
                      type: number
                    width:
                      type: integer
                    height:
                      type: integer
                  required:
                  - fx
                  - fy
                  - cx
                  - cy
                  - width
                  - height
                extrinsics:
                  type:
                  - object
                  - 'null'
                  properties:
                    rvec: {}
                    tvec: {}
                  required:
                  - rvec
                  - tvec
                measurementConfig:
                  type:
                  - object
                  - 'null'
                  additionalProperties:
                    type: object
                    additionalProperties: {}
                config:
                  type: object
                  properties:
                    url:
                      type: string
                      minLength: 1
                    username:
                      type:
                      - string
                      - 'null'
                    password:
                      type:
                      - string
                      - 'null'
                    bufferSeconds:
                      type:
                      - number
                      - 'null'
                    httpPollIntervalSeconds:
                      type:
                      - number
                      - 'null'
                    networkOffsetMs:
                      oneOf:
                      - type: integer
                      - enum:
                        - auto
                    zones:
                      type:
                      - array
                      - 'null'
                      items:
                        type: string
                        minLength: 1
                    rtspTimestampSource:
                      type:
                      - string
                      - 'null'
                      enum:
                      - wall_clock
                      - rtcp_ntp
                      - camera_metadata
                    encodingOffsetMs:
                      type:
                      - integer
                      - 'null'
                    cameraMetadataUrl:
                      type:
                      - string
                      - 'null'
                    onvifDeviceServiceUrl:
                      type:
                      - string
                      - 'null'
                    scanArea:
                      type:
                      - object
                      - 'null'
                      additionalProperties: {}
                  required:
                  - url
              required:
              - customerId
              - siteId
              - name
              - cameraType
      responses:
        '200':
          description: Default Response
      tags:
      - Cameras
    get:
      parameters:
      - schema:
          type: string
          format: uuid
        in: query
        name: customerId
        required: false
      - schema:
          type: string
          format: uuid
        in: query
        name: siteId
        required: false
      responses:
        '200':
          description: Default Response
      tags:
      - Cameras
  /v1/cameras/{cameraId}:
    get:
      parameters:
      - schema:
          type: string
          format: uuid
        in: path
        name: cameraId
        required: true
      responses:
        '200':
          description: Default Response
      tags:
      - Cameras
    patch:
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  minLength: 1
                cameraType:
                  type: string
                  enum:
                  - rtsp
                  - http_snapshot
                  - other
                status:
                  type: string
                  enum:
                  - active
                  - inactive
                  - retired
                vendor:
                  type: string
                model:
                  type: string
                zones:
                  type:
                  - array
                  - 'null'
                  items:
                    type: string
                    minLength: 1
                metadata:
                  type: object
                  additionalProperties: {}
                intrinsics:
                  type:
                  - object
                  - 'null'
                  properties:
                    fx:
                      type: number
                    fy:
                      type: number
                    cx:
                      type: number
                    cy:
                      type: number
                    k1:
                      type: number
                      default: 0
                    k2:
                      type: number
                      default: 0
                    p1:
                      type: number
                      default: 0
                    p2:
                      type: number
                      default: 0
                    k3:
                      type: number
                      default: 0
                    imageWidth:
                      type: integer
                    imageHeight:
                      type: integer
                  required:
                  - fx
                  - fy
                  - cx
                  - cy
                  - imageWidth
                  - imageHeight
                intrinsicsUndistorted:
                  type:
                  - object
                  - 'null'
                  properties:
                    fx:
                      type: number
                    fy:
                      type: number
                    cx:
                      type: number
                    cy:
                      type: number
                    width:
                      type: integer
                    height:
                      type: integer
                  required:
                  - fx
                  - fy
                  - cx
                  - cy
                  - width
                  - height
                extrinsics:
                  type:
                  - object
                  - 'null'
                  properties:
                    rvec: {}
                    tvec: {}
                  required:
                  - rvec
                  - tvec
                measurementConfig:
                  type:
                  - object
                  - 'null'
                  additionalProperties:
                    type: object
                    additionalProperties: {}
                config:
                  type:
                  - object
                  - 'null'
                  properties:
                    url:
                      type: string
                      minLength: 1
                    username:
                      type:
                      - string
                      - 'null'
                    password:
                      type:
                      - string
                      - 'null'
                    bufferSeconds:
                      type:
                      - number
                      - 'null'
                    httpPollIntervalSeconds:
                      type:
                      - number
                      - 'null'
                    networkOffsetMs:
                      oneOf:
                      - type: integer
                      - enum:
                        - auto
                    zones:
                      type:
                      - array
                      - 'null'
                      items:
                        type: string
                        minLength: 1
                    rtspTimestampSource:
                      type:
                      - string
                      - 'null'
                      enum:
                      - wall_clock
                      - rtcp_ntp
                      - camera_metadata
                    encodingOffsetMs:
                      type:
                      - integer
                      - 'null'
                    cameraMetadataUrl:
                      type:
                      - string
                      - 'null'
                    onvifDeviceServiceUrl:
                      type:
                      - string
                      - 'null'
                    scanArea:
                      type:
                      - object
                      - 'null'
                      additionalProperties: {}
      parameters:
      - schema:
          type: string
          format: uuid
        in: path
        name: cameraId
        required: true
      responses:
        '200':
          description: Default Response
      tags:
      - Cameras
    delete:
      parameters:
      - schema:
          type: string
          format: uuid
        in: path
        name: cameraId
        required: true
      responses:
        '200':
          description: Default Response
      tags:
      - Cameras
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer