Skip to content
GETAPI key

Lane rate cards

GETapi.freightratesmcp.com/lane/cards

Per-sailing rate cards for a lane, ordered by departure.

Query parameters

polstringrequired

Port of loading UN/LOCODE.

podstringrequired

Port of discharge UN/LOCODE.

Response fields

Derived from the example response.

dataobject[]

The payload. Everything an endpoint returns sits under this key.

data[].carrierstring

Carrier name, falling back to the SCAC when we hold no name.

data[].vesselstring

Vessel currently carrying the container, or null when we hold neither a name nor an IMO. Its lat and lng are always null here; the keyed endpoints carry the live position under vessel_position.

data[].etdstring

Estimated time of departure (ISO 8601).

data[].rate_usdnumber

Rate in USD.

data[].containerstring

Container type, for example 40HC.

curl 'https://api.freightratesmcp.com/lane/cards?pol=CNSHA&pod=NLRTM' \
  -H "Authorization: Bearer tmcp_YOUR_API_KEY"
Response
{
  "data": [
    { "carrier": "MSC", "vessel": "MSC TERESA",
      "etd": "2026-08-10", "rate_usd": 3120,
      "container": "40HC" }
  ]
}