Skip to main content
Cargo volume forecasts and accuracy tracking.

GET /api/v1/forecasts

Cargo volume forecasts by port and methodology. Parameters
NameTypeRequiredDescription
portstringPort slug
methodstring’pipeline’ | ‘statistical’ | ‘ml’
limitnumberDefault 50, max 200
Response
{ "forecasts": [...] }
Example
curl -X GET \
  https://axiomoverwatch.io/api/v1/forecasts?port=VALUE&method=VALUE

GET /api/v1/forecasts/accuracy

Forecast accuracy metrics (MAE, MAPE, directional accuracy). Parameters
NameTypeRequiredDescription
portstringPort slug
methodstringForecast method
Response
{ "accuracy": [...] }
Example
curl -X GET \
  https://axiomoverwatch.io/api/v1/forecasts/accuracy?port=VALUE&method=VALUE

GET /api/v1/destination-reliability

Vessel destination declaration reliability scores. Parameters
NameTypeRequiredDescription
vesselstringIMO number
tierstring’reliable’ | ‘moderate’ | ‘unreliable’
limitnumberDefault 100, max 500
Response
{ "reliability": [...] }
Example
curl -X GET \
  https://axiomoverwatch.io/api/v1/destination-reliability?vessel=VALUE&tier=VALUE