ToolAssay

Get the AIS track of the last 24 hours for a 9-digit MMSI as JSON

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.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
1765 msmedian answer time
$0.05listed price per call
$0.05price 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-24h

CategoryEverything else
Provider hostaisfleet.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days2 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.05 1765 ms

Example input (from the provider)

{
  "method": "GET",
  "pathParams": {
    "mmsi": "366898040"
  },
  "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": 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"
}

This page as JSON