Skip to content
POSTAPI key

Start tracking

POSTapi.trackingmcp.com/v1/containers

Add a container, bill of lading or booking to your account. We resolve the carrier, backfill history and keep it live.

Request body

referencestringrequired

Container number, bill of lading or booking reference.

carrierstring

Optional carrier SCAC hint. Omit and we detect it.

Response fields

Derived from the example response.

okboolean
idstring
referencestring
carrierstring
statusstring
created_atstring
curl -X POST https://api.trackingmcp.com/v1/containers \
  -H "Authorization: Bearer tmcp_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"reference":"MEDU1234562"}'
Response
{
  "ok": true,
  "id": "ctr_9Fk2mQ",
  "reference": "MEDU1234562",
  "carrier": "MSC",
  "status": "pending",
  "created_at": "2026-08-04T09:12:00Z"
}