Get the UN/LOCODE port calls of the last 30 days for a 9-digit MMSI as JSON
Get the UN/LOCODE port calls of the last 30 days for a 9-digit MMSI as JSON: arrivals, departures, estimated flags, and the port the vessel is in now. Boundaries not directly observed are flagged estimated, and the response names when capture coverage began.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
542 msmedian answer time
$0.02listed price per call
$0.02price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://aisfleet.com/api/x402/v1/ais/vessels/:mmsi/port-calls
| Category | Everything else |
|---|---|
| Provider host | aisfleet.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.02 | 542 ms |
Example input (from the provider)
{
"method": "GET",
"pathParams": {
"mmsi": "232066816"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"const": "GET",
"type": "string"
},
"pathParams": {
"additionalProperties": false,
"properties": {
"mmsi": {
"pattern": "^[0-9]{9}$",
"type": "string"
}
},
"required": [
"mmsi"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"pathParams"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"additionalProperties": false,
"properties": {
"call_count": {
"minimum": 1,
"type": "integer"
},
"calls": {
"items": {
"additionalProperties": false,
"properties": {
"arrival_estimated": {
"type": "boolean"
},
"arrived_at": {
"format": "date-time",
"type": "string"
},
"country": {
"type": "string"
},
"departed_at": {
"format": "date-time",
"type": [
"string",
"null"
]
},
"departure_estimated": {
"type": "boolean"
},
"duration_seconds": {
"type": [
"integer",
"null"
]
},
"locode": {
"type": "string"
},
"port_name": {
"type": "string"
}
},
"required": [
"locode",
"port_name",
"country",
"arrived_at",
"departed_at",
"arrival_estimated",
"departure_estimated",
"duration_seconds"
],
"type": "object"
},
"type": "array"
},
"coverage_start": {
"format": "date-time",
"type": [
"string",
"null"
]
},
"current_port": {
"additionalProperties": false,
"properties": {
"arrival_estimated": {
"type": "boolean"
},
"arrived_at": {
"format": "date-time",
"type": "string"
},
"country": {
"type": "string"
},
"locode": {
"type": "string"
},
"port_name": {
"type": "string"
}
},
"required": [
"locode",
"port_name",
"country",
"arrived_at",
"arrival_estimated"
],
"type": [
"object",
"null"
]
},
"license_url": {
"format": "uri",
"type": "string"
},
"mmsi": {
"pattern": "^[0-9]{9}$",
"type": "string"
},
"provider": {
"const": "AIS Fleet",
"type": "string"
},
"truncated": {
"type": "boolean"
},
"window_days": {
"const": 30,
"type": "integer"
},
"window_end": {
"format": "date-time",
"type": "string"
},
"window_start": {
"format": "date-time",
"type": "string"
}
},
"required": [
"provider",
"mmsi",
"window_days",
"window_start",
"window_end",
"coverage_start",
"current_port",
"calls",
"call_count",
"truncated",
"license_url"
],
"type": "object"
},
"type": {
"const": "json",
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
}