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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/cargosmart-shipments-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
openapi: 3.2.0
info:
title: CargoSmart Shipment Tracking Bookings Shipments API
description: The CargoSmart Shipment Tracking API provides real-time container tracking and shipment visibility across ocean carriers and ports. APIs return container movement events, vessel positions, ETA predictions, and port arrival/departure data for supply chain visibility platforms.
version: 1.0.0
contact:
name: CargoSmart
url: https://www.cargosmart.com/
servers:
- url: https://api.cargosmart.com
description: CargoSmart Production API
security:
- apiKey: []
- oauth2: []
tags:
- name: Shipments
description: Shipment visibility and status
paths:
/tracking/v1/shipments/{billOfLadingNumber}:
get:
operationId: getShipment
summary: Get shipment by bill of lading
description: Retrieve shipment details and container list for a bill of lading number.
tags:
- Shipments
parameters:
- name: billOfLadingNumber
in: path
required: true
description: Bill of lading number
schema:
type: string
responses:
'200':
description: Shipment details
content:
application/json:
schema:
$ref: '#/components/schemas/Shipment'
'404':
$ref: '#/components/responses/NotFound'
components:
schemas:
Port:
type: object
properties:
locode:
type: string
description: UN/LOCODE (e.g., USNYC)
portName:
type: string
countryCode:
type: string
terminalName:
type: string
Shipment:
type: object
properties:
billOfLadingNumber:
type: string
bookingNumber:
type: string
carrierCode:
type: string
carrierName:
type: string
shipper:
$ref: '#/components/schemas/Party'
consignee:
$ref: '#/components/schemas/Party'
notifyParty:
$ref: '#/components/schemas/Party'
originPort:
$ref: '#/components/schemas/Port'
destinationPort:
$ref: '#/components/schemas/Port'
containers:
type: array
items:
type: object
properties:
containerId:
type: string
containerType:
type: string
sealNumber:
type: string
cargoDescription:
type: string
grossWeight:
type: number
weightUnit:
type: string
enum:
- KG
- LB
Party:
type: object
properties:
name:
type: string
address:
type: string
city:
type: string
country:
type: string
taxId:
type: string
Error:
type: object
properties:
code:
type: string
message:
type: string
responses:
NotFound:
description: Not found
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
securitySchemes:
apiKey:
type: apiKey
in: header
name: X-API-Key
oauth2:
type: oauth2
flows:
clientCredentials:
tokenUrl: https://auth.cargosmart.com/oauth/token
scopes:
tracking:read: Read shipment tracking data
bookings:read: Read booking data
bookings:write: Create and manage bookings
documents:read: Read shipping documents