Get the AIS track of the last 24 hours for a 9-digit MMSI as JSON: up to 1000 evenly sampl
Get the AIS track of the last 24 hours 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.
50000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-31
updated
Provider
aisfleet.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xa4b5056e8260d49213e64c081b504c8535c14bc4",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"mmsi": "368209540"
},
"type": "http"
},
"output": {
"example": {
"fixes_in_window": 288,
"license_url": "https://aisfleet.com/agent-data-license/",
"max_points": 1000,
"mmsi": "123456789",
"point_count": 288,
"point_time_unit": "unix_ms",
"points": [
{
"lat": 47.6062,
"lng": -122.3321,
"speed": 6.4,
"time": 1754590930000
}
],
"provider": "AIS Fleet",
"sampled": false,
"window_end": "2026-08-07T18:42:10Z",
"window_hours": 24,
"window_start": "2026-08-06T18:42:10Z"
},
"type": "json"
}
},
"routeTemplate": "/api/x402/v1/ais/vessels/:mmsi/track-24h",
"schema": {
"$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": 24,
"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"
}
}
}Use it
curl
curl "https://aisfleet.com/api/x402/v1/ais/vessels/:mmsi/track-24h" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://aisfleet.com/api/x402/v1/ais/vessels/:mmsi/track-24h");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://aisfleet.com/api/x402/v1/ais/vessels/:mmsi/track-24h")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5502.json, and this resource appears in /discovery/resources and /discovery/search.