Skip to content
GETAPI key

Latest indices

GETapi.freightratesmcp.com/indices

Every latest rate index we publish, in one call. Also served at the base path.

Response fields

Derived from the example response.

dataobject[]

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

data[].lanestring

Origin and destination pair.

data[].containerstring

Container type, for example 40HC.

data[].rate_usdnumber

Rate in USD.

data[].wow_pctnumber

Week-on-week change, percent.

data[].as_ofstring

Date the rate is valid for.

curl 'https://api.freightratesmcp.com/indices' \
  -H "Authorization: Bearer tmcp_YOUR_API_KEY"
Response
{
  "data": [
    { "lane": "CNSHA-NLRTM", "container": "40HC",
      "rate_usd": 3120, "wow_pct": -4.2,
      "as_of": "2026-08-03" }
  ]
}