GETAPI key
Latest indices
GETkcibhpjcnqusehqgfxpu.supabase.co/functions/v1/frm-api/indices
Every latest rate index we publish, in one call. Also served at the base path.
Response fields
Derived from the example response.
data
data[].lane
data[].container
data[].rate_usd
data[].wow_pct
data[].as_of
curl https://kcibhpjcnqusehqgfxpu.supabase.co/functions/v1/frm-api/indices \
-H "Authorization: Bearer frm_YOUR_API_KEY"const res = await fetch("https://kcibhpjcnqusehqgfxpu.supabase.co/functions/v1/frm-api/indices", {
headers: {
"Authorization": "Bearer frm_YOUR_API_KEY"
}
});
const data = await res.json();import requests
res = requests.get(
"https://kcibhpjcnqusehqgfxpu.supabase.co/functions/v1/frm-api/indices",
headers={"Authorization": "Bearer frm_YOUR_API_KEY"},
)
data = res.json() Response
{
"data": [
{ "lane": "CNSHA-NLRTM", "container": "40HC",
"rate_usd": 3120, "wow_pct": -4.2,
"as_of": "2026-08-03" }
]
}