v2

latestOpenAPI 3.0.4Commercial License2026-08-0718678294.5 KB
Marine Fuels

Get all marine fuel ports

Retrieve all available marine fuel ports with their details and capabilities. Returns port information including coordinates, fuel services, and trading hours.

get/v1/marine-ports

Query parameters

region'Asia' | 'Europe' | 'Americas' | 'Middle East'
Example:Asia

Filter ports by geographic region

countrystring
Example:Singapore

Filter ports by country name

major_portsboolean
Example:true

Return only major bunkering hubs

Response

List of marine fuel ports

statusstring

Example response

{
  "status": "success",
  "data": {
    "ports": [
      {
        "code": "SGSIN",
        "name": "Singapore",
        "country": "Singapore",
        "region": "Asia",
        "major_port": true,
        "coordinates": {
          "latitude": 1.2966,
          "longitude": 103.7764
        },
        "fuel_services": [
          "MGO_05S",
          "VLSFO",
          "HFO_380",
          "HFO_180"
        ],
        "trading_hours": "24/7"
      }
    ],
    "count": 8
  }
}