Skip to content
GETAPI key

Latest lane rate

GETapi.freightratesmcp.com/lane

The latest rate for a single lane. Both ports are required.

Query parameters

polstringrequired

Port of loading UN/LOCODE.

podstringrequired

Port of discharge UN/LOCODE.

Response schema

9 fields

Derived from the example response, nested as the JSON is.

dataobject

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

polstring

Port of loading UN/LOCODE.

podstring

Port of discharge UN/LOCODE.

containerstring

Container type, for example 40HC.

rate_usdnumber

Rate in USD.

lownumber

Low end of the observed range, USD.

highnumber

High end of the observed range, USD.

wow_pctnumber

Week-on-week change, percent.

as_ofstring

Date the rate is valid for.

curl 'https://api.freightratesmcp.com/lane?pol=CNSHA&pod=NLRTM' \
  -H "Authorization: Bearer tmcp_YOUR_API_KEY"
Response
{
  "data": {
    "pol": "CNSHA", "pod": "NLRTM",
    "container": "40HC",
    "rate_usd": 3120,
    "low": 2850, "high": 3480,
    "wow_pct": -4.2,
    "as_of": "2026-08-03"
  }
}