JSON
. To receive XML, set the Accept
header to
application/xml
.
GET https://api.myshiptracking.com/api/v2/vessel/bulk
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. |
src | no | text | ter |
Allowed values: ter or sat. Specifies the source of AIS data. |
mmsi | yes (one required) | integer or comma-separated list | 9-digit Maritime Mobile Service Identity. Provide multiple values separated by commas. | |
imo | integer or comma-separated list | 7-digit International Maritime Organization number. Provide multiple values separated by commas. |
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. |
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. |
All API responses follow a standardized envelope format for consistency and ease of integration.
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
: An array of vessel records. For XML responses, the data is formatted according to the requested XML structure.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.
{
"status": "success",
"duration": "0.012729385",
"timestamp": "2025-04-03T07:51:23.287Z",
"data": [
{
"vessel_name": "BLUE STAR DELOS",
"mmsi": 241087000,
"imo": 9565039,
"lat": 37.39592,
"lng": 24.61049,
"course": 124.8,
"speed": 24.3,
"nav_status": 0,
"received": "2025-04-03T08:16:10Z"
},
{
"vessel_name": "BLUE STAR NAXOS",
"mmsi": 239923000,
"imo": 9241786,
"lat": 37.08747,
"lng": 25.1263,
"course": 137,
"speed": 18.9,
"nav_status": 0,
"received": "2025-04-03T08:20:43Z"
},
{
"vessel_name": "BLUE STAR PAROS",
"mmsi": 239924000,
"imo": 9241774,
"lat": 38.0289,
"lng": 23.49657,
"course": 121,
"speed": 0,
"nav_status": 5,
"received": "2025-04-03T08:20:13Z"
}
]
}
{
"status": "error",
"duration": "0.001234567",
"timestamp": "2025-04-03T07:52:00.000Z",
"code": "ERR_NO_IDS",
"message": "You must provide at least one identifier: either mmsi or imo."
}
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_IDS | 400 | Neither mmsi nor imo was provided; at least one identifier is required. |
ERR_TOO_MANY_IDS | 400 | The combined number of identifiers exceeds the allowed limit (100). |
ERR_VESSELS_NOT_FOUND | 404 | No vessels were found matching the provided identifiers. |
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_NO_CREDITS | 402 | Insufficient credit balance for the requested operation. |
ERR_RATE_LIMIT | 429 | The request rate limit has been exceeded. |
ERR_INTERNAL | 500 | An internal server error occurred. |
<?php
$apiKey = "YOUR_API_KEY";
$mmsiList = "241087000,239923000,239924000"; // Comma-separated MMSI values
$imoList = "9565039"; // You can also provide IMO values (comma-separated)
// For extended response, append: &response=extended
$url = "https://api.myshiptracking.com/api/v2/vessel/bulk?mmsi={$mmsiList}&imo={$imoList}";
$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/bulk?mmsi=241087000%2C239923000%2C239924000&imo=9565039&response=extended" \
-H "Authorization: Bearer YOUR_API_KEY"
import requests
api_key = "YOUR_API_KEY"
mmsi_list = "241087000,239923000,239924000" # Comma-separated
imo_list = "9565039" # Comma-separated if needed
url = f"https://api.myshiptracking.com/api/v2/vessel/bulk?mmsi={mmsi_list}&imo={imo_list}&response=extended"
headers = {
"Authorization": f"Bearer {api_key}"
# Alternatively: "x-api-key": api_key
}
response = requests.get(url, headers=headers)
if response.ok:
print(response.json())
else:
print("Error:", response.status_code, response.text)
const apiKey = "YOUR_API_KEY";
const mmsiList = "241087000,239923000,239924000"; // Comma-separated
const imoList = "9565039"; // Optional if using mmsi instead
let url = `https://api.myshiptracking.com/api/v2/vessel/bulk?mmsi=${encodeURIComponent(mmsiList)}&imo=${encodeURIComponent(imoList)}&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 BulkVesselAPIExample {
public static void main(String[] args) {
try {
String apiKey = "YOUR_API_KEY";
String mmsiList = "241087000,239923000,239924000"; // Comma-separated
String imoList = "9565039";
String urlString = "https://api.myshiptracking.com/api/v2/vessel/bulk?mmsi=" + mmsiList + "&imo=" + imoList + "&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 BulkVesselAPIExample {
static async Task Main() {
string apiKey = "YOUR_API_KEY";
string mmsiList = "241087000,239923000,239924000"; // Comma-separated
string imoList = "9565039";
string url = $"https://api.myshiptracking.com/api/v2/vessel/bulk?mmsi={mmsiList}&imo={imoList}&response=extended";
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"
mmsi_list = "241087000,239923000,239924000" # Comma-separated
imo_list = "9565039"
uri = URI("https://api.myshiptracking.com/api/v2/vessel/bulk?mmsi=#{mmsi_list}&imo=#{imo_list}&response=extended")
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
Your request preview will appear here...
Your response will appear here...