Get the AIS track of the last 30 days for a 9-digit MMSI as JSON
Get the AIS track of the last 30 days for a 9-digit MMSI as JSON: up to 1000 evenly sampled fixes with time, position and speed, ending at the newest fix. Sold only for vessels the AIS Fleet network currently observes; gaps between fixes mean no reception, never interpolation.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
412 msmedian answer time
$0.5listed price per call
$0.5price 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/track-30d
| Category | Everything else |
|---|---|
| Provider host | aisfleet.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 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.5 | 412 ms |
Example input (from the provider)
{
"method": "GET",
"pathParams": {
"mmsi": "368110680"
},
"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": {
"fixes_in_window": {
"minimum": 1,
"type": "integer"
},
"license_url": {
"format": "uri",
"type": "string"
},
"max_points": {
"type": "integer"
},
"mmsi": {
"pattern": "^[0-9]{9}$",
"type": "string"
},
"point_count": {
"minimum": 0,
"type": "integer"
},
"point_time_unit": {
"const": "unix_ms",
"type": "string"
},
"points": {
"items": {
"additionalProperties": false,
"properties": {
"lat": {
"maximum": 90,
"minimum": -90,
"type": "number"
},
"lng": {
"maximum": 180,
"minimum": -180,
"type": "number"
},
"speed": {
"type": [
"number",
"null"
]
},
"time": {
"type": "integer"
}
},
"required": [
"lat",
"lng",
"time",
"speed"
],
"type": "object"
},
"type": "array"
},
"provider": {
"const": "AIS Fleet",
"type": "string"
},
"sampled": {
"type": "boolean"
},
"window_end": {
"format": "date-time",
"type": "string"
},
"window_hours": {
"const": 720,
"type": "integer"
},
"window_start": {
"format": "date-time",
"type": "string"
}
},
"required": [
"provider",
"mmsi",
"window_hours",
"window_start",
"window_end",
"fixes_in_window",
"point_count",
"sampled",
"max_points",
"point_time_unit",
"points",
"license_url"
],
"type": "object"
},
"type": {
"const": "json",
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
}