Skip to content
GETAPI key

Lane rate history

GETkcibhpjcnqusehqgfxpu.supabase.co/functions/v1/frm-api/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[]
data[].daystring
data[].rate_usdnumber
curl https://kcibhpjcnqusehqgfxpu.supabase.co/functions/v1/frm-api/lane/history?pol=CNSHA&pod=NLRTM \
  -H "Authorization: Bearer frm_YOUR_API_KEY"
Response
{
  "data": [
    { "day": "2026-07-28", "rate_usd": 3260 },
    { "day": "2026-07-29", "rate_usd": 3210 }
  ]
}