Transload Measurement API

The Measurement API from Transload — 1 operation(s) for measurement.

Operations 1

POST /v1/measurement/results

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-measurement-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-measurement-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Pipeline Backend Admin Measurement 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: Measurement
paths:
  /v1/measurement/results:
    post:
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                run_id:
                  type: string
                  minLength: 1
                status:
                  type: string
                  enum:
                  - success
                  - error
                measurements:
                  type: array
                  items:
                    type: object
                    properties:
                      image_name:
                        type: string
                      camera:
                        type: string
                      length_cm:
                        type: number
                      width_cm:
                        type: number
                      height_cm:
                        type: number
                    required:
                    - image_name
                    - camera
                    - length_cm
                    - width_cm
                    - height_cm
                  default: []
                expected_scans:
                  type:
                  - integer
                  - 'null'
                  default: 0
                output_uris:
                  type: object
                  properties:
                    measurements_csv:
                      type:
                      - string
                      - 'null'
                    ply_files:
                      type: array
                      items:
                        type: string
                    ply_downsampled_files:
                      type: array
                      items:
                        type: string
                    obb_projection_json_files:
                      type: array
                      items:
                        type: string
                error:
                  type:
                  - string
                  - 'null'
                error_type:
                  type:
                  - string
                  - 'null'
                  enum:
                  - inference_oom
                  - inference_failed
                  - mask_missing
                  - image_download_failed
                  - config_invalid
                  - upload_failed
              required:
              - run_id
              - status
      responses:
        '200':
          description: Default Response
      tags:
      - Measurement
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer