Transload Scans API

The Scans API from Transload — 5 operation(s) for scans.

Operations 6

POST /v1/scans
GET /v1/scans
GET /v1/scans/stats
GET /v1/scans/{id}
POST /v1/scans/{id}/stages/{stage}/start
POST /v1/scans/{id}/stages/{stage}/complete

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-scans-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-scans-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Pipeline Backend Admin Scans 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: Scans
paths:
  /v1/scans:
    post:
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                customerId:
                  type: string
                  format: uuid
                siteId:
                  type: string
                  format: uuid
                capturedAt:
                  type: string
                  format: date-time
                handlingUnitId:
                  type: string
                  minLength: 1
                shipmentId:
                  type: string
                  minLength: 1
                identifiers:
                  type: array
                  items:
                    type: object
                    properties:
                      type:
                        type: string
                        enum:
                        - customer_scan_id
                        - handling_unit_id
                        - shipment_id
                        - frame_request_id
                      value:
                        type: string
                        minLength: 1
                    required:
                    - type
                    - value
                metadata:
                  type: object
                  additionalProperties: {}
              required:
              - customerId
              - siteId
              - capturedAt
              - identifiers
      responses:
        '200':
          description: Default Response
      tags:
      - Scans
    get:
      parameters:
      - schema:
          type: string
          format: uuid
        in: query
        name: customerId
        required: true
      - schema:
          type: string
          enum:
          - ingestion
          - dewarping
          - classification
          - measurement
          - qa
        in: query
        name: stage
        required: false
      - schema:
          type: string
          enum:
          - pending
          - running
          - succeeded
          - failed
          - skipped
          - rejected
        in: query
        name: stageStatus
        required: false
      - schema:
          type: string
          format: date-time
        in: query
        name: capturedAfter
        required: false
      - schema:
          type: string
          format: date-time
        in: query
        name: capturedBefore
        required: false
      - schema:
          type: integer
          minimum: 1
          default: 50
        in: query
        name: limit
        required: false
      - schema:
          type: integer
          default: 0
        in: query
        name: offset
        required: false
      responses:
        '200':
          description: Default Response
      tags:
      - Scans
  /v1/scans/stats:
    get:
      parameters:
      - schema:
          type: string
          format: uuid
        in: query
        name: customerId
        required: true
      - schema:
          type: string
          format: date-time
        in: query
        name: since
        required: false
      responses:
        '200':
          description: Default Response
      tags:
      - Scans
  /v1/scans/{id}:
    get:
      parameters:
      - schema:
          type: string
          format: uuid
        in: path
        name: id
        required: true
      responses:
        '200':
          description: Default Response
      tags:
      - Scans
  /v1/scans/{id}/stages/{stage}/start:
    post:
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                operator:
                  type: string
                  minLength: 1
                inputRef:
                  type: object
                  additionalProperties: {}
      parameters:
      - schema:
          type: string
          format: uuid
        in: path
        name: id
        required: true
      - schema:
          type: string
          enum:
          - ingestion
          - dewarping
          - classification
          - measurement
          - qa
        in: path
        name: stage
        required: true
      responses:
        '200':
          description: Default Response
      tags:
      - Scans
  /v1/scans/{id}/stages/{stage}/complete:
    post:
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                status:
                  type: string
                  enum:
                  - succeeded
                  - failed
                  - skipped
                  - rejected
                outputRef:
                  type: object
                  additionalProperties: {}
                providerPayload:
                  type: object
                  additionalProperties: {}
                error:
                  type: string
              required:
              - status
      parameters:
      - schema:
          type: string
          format: uuid
        in: path
        name: id
        required: true
      - schema:
          type: string
          enum:
          - ingestion
          - dewarping
          - classification
          - measurement
          - qa
        in: path
        name: stage
        required: true
      responses:
        '200':
          description: Default Response
      tags:
      - Scans
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer