Vessels In Zone

Vessels In Zone Endpoint

Description

Retrieve a list of vessels within a specified geographic zone.

The default response format is JSON. To receive XML, set the Accept header to application/xml.

The endpoint returns up to 500 records.

Note: Only terrestrial AIS data is supported. Coverage depends on our network—check MyShipTracking.com for live coverage.

HTTP Request

GET https://api.myshiptracking.com/api/v2/vessel/zone

Parameters

Parameter Required Type Default Description
apikey (header) yes text Your API key. Pass it via the HTTP header Authorization: Bearer YOUR_API_KEY or x-api-key.
response no text simple Allowed values: simple or extended.
simple: Returns basic vessel information.
extended: Returns additional details.
minlon yes number Minimum longitude (in decimal degrees) defining the zone.
maxlon yes number Maximum longitude (in decimal degrees) defining the zone.
minlat yes number Minimum latitude (in decimal degrees) defining the zone.
maxlat yes number Maximum latitude (in decimal degrees) defining the zone.
minutesBack no number 60 Defines the maximum age (in minutes) of the vessel position. Only vessels with a position timestamp no older than this value will be returned.

Billing & Credits Details

Credit Charge Details

simple response = 1 credit per vessel.
extended response = 3 credits per vessel.
If the request returns no results, no charge is made.

Response Fields - simple

1 credit per vessel
Field Type Description
vessel_name text Name of the vessel.
mmsi int Maritime Mobile Service Identity.
imo int International Maritime Organization number (if available).
vtype int Vessel type group code according to References
lat real Latitude in decimal degrees.
lng real Longitude in decimal degrees.
course real Course in degrees.
speed real Speed in knots.
nav_status text Navigation status according to AIS Specification
received datetime UTC timestamp when the position was received.

Response Fields - extended

3 credits per vessel

Includes all simple fields plus:

Field Type Description
callsign text Vessel's callsign.
vessel_type text Readable description of the vessel type.
ais_type int AIS Ship Type according to AIS Specification
size_a int Length from GPS antenna to the bow (meters).
size_b int Length from GPS antenna to the stern (meters).
size_c int Distance from GPS antenna to the port side (meters).
size_d int Distance from GPS antenna to the starboard side (meters).
draught real Current draught (meters) of the vessel.
flag text Country flag code.
flag_mid text Maritime flag identifier.
gt int Gross Tonnage (if available).
dwt int Deadweight (if available).
built int Year the vessel was built (if available).
destination text Reported destination.
eta datetime Estimated Time of Arrival (UTC).
current_port text Current port name (if available).
current_port_id int Current port identifier.
current_port_unloco text Current port UN/LOCODE.
current_port_country text Country of the current port.
current_port_arr_utc datetime Arrival time at current port (UTC).
current_port_arr_local datetime Arrival time at current port (local time).
last_port text Last port visited.
last_port_id int Last port identifier.
last_port_unloco text Last port UN/LOCODE.
last_port_country text Country of the last port.
last_port_dep_utc datetime Departure time from last port (UTC).
last_port_dep_local datetime Departure time from last port (local time).
next_port text Next port name.
next_port_id int Next port identifier.
next_port_unloco text Next port UN/LOCODE.
next_port_country text Country of the next port.
next_port_eta_utc datetime ETA at next port (UTC).
next_port_eta_local datetime ETA at next port (local time).
avg_sog real Average speed over ground.
max_sog real Maximum speed over ground.
distance_covered real Distance covered (nautical miles).
wind_knots real Wind speed (knots).
wind_direction text Wind direction.
humidity real Humidity percentage.
pressure real Atmospheric pressure.
temperature real Temperature in Celsius.
visibility int Visibility in meters.

Response Structure

All API responses follow a standardized envelope format for consistency and ease of integration.

Success Response

On success (HTTP status code 200), the envelope includes:

  • status: "success"
  • duration: Time taken to process the request (in seconds).
  • timestamp: Server timestamp when the response was generated (ISO 8601 format).
  • data: The requested resource data. For XML responses, the data is formatted according to the requested XML structure.

Error Response

On error, the envelope includes:

  • status: "error"
  • duration: Time taken to process the request.
  • timestamp: Server timestamp when the error was generated.
  • code: Specific error code used for troubleshooting.
  • message: Detailed error message.

The response format (JSON or XML) is determined by the Accept header.

Note: When credits are charged for a request, the response includes a custom HTTP header X-Credit-Charged indicating the number of credits deducted.

Sample Success Response (JSON)

{
    "status": "success",
    "duration": "0.002183331",
    "timestamp": "2025-04-03T22:00:23.777Z",
    "data": [
        {
            "vessel_name": "ANNA",
            "mmsi": 239011300,
            "imo": null,
            "vtype": 9,
            "lat": 37.91374,
            "lng": 23.70603,
            "course": 511,
            "speed": 0,
            "nav_status": 15,
            "received": "2025-04-03T21:58:30Z"
        },
        {
            "vessel_name": "PENNY",
            "mmsi": 239315300,
            "imo": null,
            "vtype": 9,
            "lat": 37.91349,
            "lng": 23.70581,
            "course": 511,
            "speed": 0,
            "nav_status": 15,
            "received": "2025-04-03T21:57:36Z"
        },
        {
            "vessel_name": "DESTINY",
            "mmsi": 240664200,
            "imo": null,
            "vtype": 9,
            "lat": 37.91221,
            "lng": 23.70638,
            "course": 511,
            "speed": 0,
            "nav_status": 15,
            "received": "2025-04-03T21:58:20Z"
        },
        {
            "vessel_name": "SOPHIA",
            "mmsi": 240085600,
            "imo": null,
            "vtype": 9,
            "lat": 37.91147,
            "lng": 23.707,
            "course": 511,
            "speed": 0,
            "nav_status": 15,
            "received": "2025-04-03T21:57:16Z"
        },
        {
            "vessel_name": "KOS 46.CAT 10",
            "mmsi": 240661600,
            "imo": null,
            "vtype": 9,
            "lat": 37.91338,
            "lng": 23.70662,
            "course": 511,
            "speed": 0,
            "nav_status": 15,
            "received": "2025-04-03T21:57:41Z"
        }
    ]
}

Sample Error Response (JSON)

{
    "status": "error",
    "duration": "0.001234567",
    "timestamp": "2025-04-03T22:00:45.123Z",
    "code": "ERR_INVALID_BOUNDS",
    "message": "Invalid geographical bounds provided."
}

Possible Error Responses

The following error responses can be returned. Each error follows the standardized response envelope.

Error Code HTTP Status Description
MST_ERR_VALIDATOR 400 Parameter validation failed (e.g., incorrect format or out-of-range values).
ERR_NO_KEY 401 No API key was provided in the request headers.
ERR_INVALID_KEY 401 The provided API key is invalid or unrecognized.
ERR_NOACCESS 403 The API key does not have permission to access this endpoint.
ERR_NO_CREDITS 402 Insufficient credit balance for the requested operation.
ERR_INVALID_BOUNDS 400 Invalid or incomplete geographical bounds provided.
ERR_RATE_LIMIT 429 The request rate limit has been exceeded.
ERR_INTERNAL 500 An internal server error occurred.

Usage Examples

<?php
$apiKey = "YOUR_API_KEY";
$minlon = "23.7055";
$maxlon = "24.0";
$minlat = "37.91";
$maxlat = "38.01";
// For extended response, append: &response=extended or set $response = "extended";
$response = "simple";
$url = "https://api.myshiptracking.com/api/v2/vessel/zone?minlon={$minlon}&maxlon={$maxlon}&minlat={$minlat}&maxlat={$maxlat}&response={$response}";

$headers = [
    "Authorization: Bearer $apiKey"
    // Alternatively: "x-api-key: $apiKey"
];

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);

if(curl_errno($ch)) {
    echo 'Request Error: ' . curl_error($ch);
} else {
    echo $response;
}
curl_close($ch);
?>
curl --location "https://api.myshiptracking.com/api/v2/vessel/zone?minlon=23.7055&maxlon=24.0&minlat=37.91&maxlat=38.01" \
--header "Authorization: Bearer YOUR_API_KEY"
# For extended response, add: &response=extended
import requests

api_key = "YOUR_API_KEY"
minlon  = "23.7055"
maxlon  = "24.0"
minlat  = "37.91"
maxlat  = "38.01"
response_type = "simple"  # or "extended"
url = f"https://api.myshiptracking.com/api/v2/vessel/zone?minlon={minlon}&maxlon={maxlon}&minlat={minlat}&maxlat={maxlat}&response={response_type}"

headers = {
    "Authorization": f"Bearer {api_key}"
    # Alternatively: "x-api-key": api_key
}

r = requests.get(url, headers=headers)
if r.ok:
    print(r.json())
else:
    print("Error:", r.status_code, r.text)
const apiKey = "YOUR_API_KEY";
const minlon = "23.7055";
const maxlon = "24.0";
const minlat = "37.91";
const maxlat = "38.01";
const responseType = "simple"; // or "extended"
let url = `https://api.myshiptracking.com/api/v2/vessel/zone?minlon=${minlon}&maxlon=${maxlon}&minlat=${minlat}&maxlat=${maxlat}&response=${responseType}`;
// For extended response, append: &response=extended

fetch(url, {
  method: "GET",
  headers: {
    "Authorization": `Bearer ${apiKey}`
    // Alternatively: "x-api-key": apiKey
  }
})
.then(response => response.headers.get("Content-Type").includes("application/xml") ? response.text() : response.json())
.then(data => console.log(data))
.catch(error => console.error("Error:", error));
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;

public class VesselZoneExample {
    public static void main(String[] args) {
        try {
            String apiKey = "YOUR_API_KEY";
            String minlon = "23.7055";
            String maxlon = "24.0";
            String minlat = "37.91";
            String maxlat = "38.01";
            String responseType = "simple"; // or "extended"
            String urlString = "https://api.myshiptracking.com/api/v2/vessel/zone?minlon=" + minlon + "&maxlon=" + maxlon + "&minlat=" + minlat + "&maxlat=" + maxlat + "&response=" + responseType;
            // For extended response, append: &response=extended
            URL url = new URL(urlString);
            HttpURLConnection conn = (HttpURLConnection) url.openConnection();
            conn.setRequestMethod("GET");
            conn.setRequestProperty("Authorization", "Bearer " + apiKey);
            int responseCode = conn.getResponseCode();
            BufferedReader in = new BufferedReader(new InputStreamReader(
                (responseCode == HttpURLConnection.HTTP_OK) ? conn.getInputStream() : conn.getErrorStream()));
            String inputLine;
            StringBuilder response = new StringBuilder();
            while ((inputLine = in.readLine()) != null) {
                response.append(inputLine);
            }
            in.close();
            System.out.println(response.toString());
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}
using System;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;

class VesselZoneExample {
    static async Task Main() {
        string apiKey = "YOUR_API_KEY";
        string minlon = "23.7055";
        string maxlon = "24.0";
        string minlat = "37.91";
        string maxlat = "38.01";
        string responseType = "simple"; // or "extended"
        string url = $"https://api.myshiptracking.com/api/v2/vessel/zone?minlon={minlon}&maxlon={maxlon}&minlat={minlat}&maxlat={maxlat}&response={responseType}";
        using (HttpClient client = new HttpClient()) {
            client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", apiKey);
            HttpResponseMessage response = await client.GetAsync(url);
            if (response.IsSuccessStatusCode) {
                string content = await response.Content.ReadAsStringAsync();
                Console.WriteLine(content);
            } else {
                Console.WriteLine("Error: " + response.StatusCode);
            }
        }
    }
}
require 'net/http'
require 'uri'
require 'json'

api_key = "YOUR_API_KEY"
minlon  = "23.7055"
maxlon  = "24.0"
minlat  = "37.91"
maxlat  = "38.01"
response_type = "simple"  # or "extended"
uri = URI("https://api.myshiptracking.com/api/v2/vessel/zone?minlon=#{minlon}&maxlon=#{maxlon}&minlat=#{minlat}&maxlat=#{maxlat}&response=#{response_type}")

request = Net::HTTP::Get.new(uri)
request["Authorization"] = "Bearer #{api_key}"

response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) do |http|
  http.request(request)
end

if response.is_a?(Net::HTTPSuccess)
  data = JSON.parse(response.body)
  puts data
else
  puts "Error: #{response.code} #{response.message}"
end

Try It Out

Request Preview

Your request preview will appear here...
                

Response

Your response will appear here...