JSON
. To receive XML, set the Accept
header to
application/xml
.
GET https://api.myshiptracking.com/api/v2/port/estimate
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 .
|
|
port_id | yes (one required) | integer |
Port identifier. Do not include if using unloco
|
|
unloco | text |
Port UN/LOCODE. Do not include if using port_id
|
Field | Type | Description |
---|---|---|
mmsi | int | Maritime Mobile Service Identity. |
imo | int | International Maritime Organization number (if available). |
vessel_name | text | Name of the vessel associated with the port estimate. |
vtype | int | Vessel type code. |
vessel_type | text | Readable description of the vessel type. |
flag | text | Country flag code. |
gt | int | Gross Tonnage (if available). |
dwt | int | Deadweight (if available). |
built | int | Year the vessel was built (if available). |
length | int | Vessel length (meters). |
width | int | Vessel width (meters). |
eta_utc | datetime | Estimated Time of Arrival at port (UTC). |
eta_local | datetime | Estimated Time of Arrival at port (local time). |
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 port estimate objects. 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.020861546",
"timestamp": "2025-04-03T18:39:46.512Z",
"data": [
{
"mmsi": 677072000,
"imo": 7414183,
"vessel_name": "MODY M",
"vtype": 7,
"vessel_type": "Bulk Carrier",
"flag": "TZ",
"gt": 3885,
"dwt": 6085,
"built": 1976,
"length": 104,
"width": 16,
"eta_utc": "2025-04-03T19:19:32Z",
"eta_local": "2025-04-03T21:19:32"
},
{
"mmsi": 237026300,
"imo": 8966951,
"vessel_name": "ARTEMIS",
"vtype": 6,
"vessel_type": "Ro-Ro/Passenger Ship",
"flag": "GR",
"gt": 1612,
"dwt": 325,
"built": 1997,
"length": 90,
"width": 14,
"eta_utc": "2025-04-03T20:25:00Z",
"eta_local": "2025-04-03T22:25:00"
},
{
"mmsi": 241671000,
"imo": 9186649,
"vessel_name": "BLUE CARRIER 1",
"vtype": 7,
"vessel_type": "Ro-Ro Cargo",
"flag": "GR",
"gt": 13073,
"dwt": 4650,
"built": 2000,
"length": 143,
"width": 23,
"eta_utc": "2025-04-03T21:13:47Z",
"eta_local": "2025-04-03T23:13:47"
}
]
}
{
"status": "error",
"duration": "0.001600648",
"timestamp": "2025-04-03T18:39:50.240Z",
"code": "MST_ERR_VALIDATOR",
"message": "port_id must be an integer."
}
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 port_id format or out-of-range values). |
ERR_INVALID_IDENTIFIER | 400 | Both or neither of port_id and unloco were provided; exactly one identifier is required. |
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_NOT_FOUND | 404 | Port not found matching the provided identifier. |
ERR_RATE_LIMIT | 429 | The request rate limit has been exceeded. |
ERR_INTERNAL | 500 | An internal server error occurred. |
<?php
$apiKey = "YOUR_API_KEY";
$port_id = "15"; // Or use unloco by setting $unloco instead
$url = "https://api.myshiptracking.com/api/v2/port/estimate?port_id={$port_id}";
// For unloco usage, use: ?unloco=YOUR_UNLOCO
$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/port/estimate?port_id=15" \
--header "Authorization: Bearer YOUR_API_KEY"
# For unloco usage, append: ?unloco=YOUR_UNLOCO
import requests
api_key = "YOUR_API_KEY"
port_id = "15" # Or use unloco by modifying the URL accordingly
url = f"https://api.myshiptracking.com/api/v2/port/estimate?port_id={port_id}"
# For unloco usage, use: ?unloco=YOUR_UNLOCO
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 port_id = "15"; // Or use unloco instead
let url = `https://api.myshiptracking.com/api/v2/port/estimate?port_id=${port_id}`;
// For unloco usage, append: ?unloco=YOUR_UNLOCO
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 PortEstimateExample {
public static void main(String[] args) {
try {
String apiKey = "YOUR_API_KEY";
String portId = "15"; // Or use unloco instead
String urlString = "https://api.myshiptracking.com/api/v2/port/estimate?port_id=" + portId;
// For unloco usage, append: &unloco=YOUR_UNLOCO
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 PortEstimateExample {
static async Task Main() {
string apiKey = "YOUR_API_KEY";
string portId = "15"; // Or use unloco instead
string url = $"https://api.myshiptracking.com/api/v2/port/estimate?port_id={portId}";
// For unloco usage, append: &unloco=YOUR_UNLOCO
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"
port_id = "15" # Or use unloco instead
uri = URI("https://api.myshiptracking.com/api/v2/port/estimate?port_id=#{port_id}")
# For unloco usage, use: ?unloco=YOUR_UNLOCO
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...