Skip to main content
Port congestion indices and wait time trends.

GET /api/v1/congestion

Latest congestion snapshot for all ports or a specific port. Parameters
NameTypeRequiredDescription
portstringPort slug
vessel_typestringFilter by vessel type
Response
{ "congestion": [...] }
Example
curl -X GET \
  https://axiomoverwatch.io/api/v1/congestion?port=VALUE&vessel_type=VALUE

GET /api/v1/congestion/history

Historical congestion data for a port. Parameters
NameTypeRequiredDescription
portstringPort slug
daysnumberDefault 30, max 365
vessel_typestringFilter by vessel type
Response
{ "port", "port_name", "days", "vessel_type", "history" }
Example
curl -X GET \
  https://axiomoverwatch.io/api/v1/congestion/history?port=VALUE&days=VALUE

POST /api/v1/congestion/refresh

Requires API key.
Trigger congestion index recomputation. Response
{ "success", "result" }
Example
curl -X POST -H "X-API-Key: YOUR_KEY" \
  https://axiomoverwatch.io/api/v1/congestion/refresh \
  -d '{"key":"value"}'