Transload Customer API

The Customer API from Transload — 9 operation(s) for customer.

Operations 10

POST /v1/customer/auth/request-link
POST /v1/customer/auth/verify
POST /v1/customer/auth/select-customer
POST /v1/customer/auth/logout
GET /v1/customer/auth/session
GET /v1/customer/data/handling-units
GET /v1/customer/data/handling-units/export
GET /v1/customer/data/shipments/{shipmentId}
GET /v1/customer/data/handling-units/{handlingUnitId}
DELETE /v1/customer/data/handling-units/{handlingUnitId}

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-customer-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-customer-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Pipeline Backend Admin Customer 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: Customer
paths:
  /v1/customer/auth/request-link:
    post:
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                email:
                  type: string
              required:
              - email
      responses:
        '200':
          description: Default Response
      tags:
      - Customer
  /v1/customer/auth/verify:
    post:
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                token:
                  type: string
                  minLength: 10
                otp:
                  type: string
              required:
              - token
      responses:
        '200':
          description: Default Response
      tags:
      - Customer
  /v1/customer/auth/select-customer:
    post:
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                customerId:
                  type: string
                  format: uuid
              required:
              - customerId
      responses:
        '200':
          description: Default Response
      tags:
      - Customer
  /v1/customer/auth/logout:
    post:
      responses:
        '200':
          description: Default Response
      tags:
      - Customer
  /v1/customer/auth/session:
    get:
      responses:
        '200':
          description: Default Response
      tags:
      - Customer
  /v1/customer/data/handling-units:
    get:
      responses:
        '200':
          description: Default Response
      tags:
      - Customer
  /v1/customer/data/handling-units/export:
    get:
      responses:
        '200':
          description: Default Response
      tags:
      - Customer
  /v1/customer/data/shipments/{shipmentId}:
    get:
      parameters:
      - schema:
          type: string
        in: path
        name: shipmentId
        required: true
      responses:
        '200':
          description: Default Response
      tags:
      - Customer
  /v1/customer/data/handling-units/{handlingUnitId}:
    get:
      parameters:
      - schema:
          type: string
        in: path
        name: handlingUnitId
        required: true
      responses:
        '200':
          description: Default Response
      tags:
      - Customer
    delete:
      parameters:
      - schema:
          type: string
        in: path
        name: handlingUnitId
        required: true
      responses:
        '200':
          description: Default Response
      tags:
      - Customer
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer