Get the latest available AIS Fleet vessel position for a 9-digit MMSI, observed
Get the latest available AIS Fleet vessel position for a 9-digit MMSI, observed within the prior six hours. The response includes observation time, age, and speed/course over ground when the observation reported them.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
1891 msmedian answer time
$0.01listed price per call
$0.01price 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/position
| 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.01 | 1891 ms |
Example input (from the provider)
{
"method": "GET",
"pathParams": {
"mmsi": "368201690"
},
"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": {
"age_seconds": {
"minimum": 0,
"type": "integer"
},
"course_over_ground_degrees": {
"type": [
"number",
"null"
]
},
"license_url": {
"format": "uri",
"type": "string"
},
"mmsi": {
"pattern": "^[0-9]{9}$",
"type": "string"
},
"observed_at": {
"format": "date-time",
"type": "string"
},
"position": {
"additionalProperties": false,
"properties": {
"latitude": {
"maximum": 90,
"minimum": -90,
"type": "number"
},
"longitude": {
"maximum": 180,
"minimum": -180,
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
},
"provider": {
"const": "AIS Fleet",
"type": "string"
},
"speed_over_ground_knots": {
"type": [
"number",
"null"
]
}
},
"required": [
"provider",
"mmsi",
"position",
"speed_over_ground_knots",
"course_over_ground_degrees",
"observed_at",
"age_seconds",
"license_url"
],
"type": "object"
},
"type": {
"const": "json",
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
}