Skip to content
GETAPI key

Lane rate history

GETapi.freightratesmcp.com/lane/history

Daily rate history for a lane, oldest to newest, for a trend line.

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[].daystring

Date of the observation (ISO 8601).

data[].rate_usdnumber

Rate in USD.

curl 'https://api.freightratesmcp.com/lane/history?pol=CNSHA&pod=NLRTM' \
  -H "Authorization: Bearer tmcp_YOUR_API_KEY"
Response
{
  "data": [
    { "day": "2026-07-28", "rate_usd": 3260 },
    { "day": "2026-07-29", "rate_usd": 3210 }
  ]
}