GETNo key
Port congestion
GETschedulesmcp-api.fly.dev/public/port-congestion
Congestion and dwell for a port, or the congestion leaderboard.
Query parameters
port
Port UN/LOCODE. Omit for the leaderboard.
level
Filter by congestion level.
Response fields
Derived from the example response.
ok
data
data.port
data.wait_hours
data.at_anchor
data.level
Try it No key
curl https://schedulesmcp-api.fly.dev/public/port-congestion?port=USLAX
const res = await fetch("https://schedulesmcp-api.fly.dev/public/port-congestion?port=USLAX");
const data = await res.json(); import requests
res = requests.get("https://schedulesmcp-api.fly.dev/public/port-congestion?port=USLAX")
data = res.json()
Sample response example
{
"ok": true,
"data": {
"port": "USLAX",
"wait_hours": 38,
"at_anchor": 11,
"level": "elevated"
}
} This preview uses documented example data and makes no live request. Get a key to run live.