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 fields

Derived from the example response.

dataobject

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

data.polstring

Port of loading UN/LOCODE.

data.podstring

Port of discharge UN/LOCODE.

data.containerstring

Container type, for example 40HC.

data.rate_usdnumber

Rate in USD.

data.lownumber

Low end of the observed range, USD.

data.highnumber

High end of the observed range, USD.

data.wow_pctnumber

Week-on-week change, percent.

data.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"
  }
}