v2

latestOpenAPI 3.0.4Commercial License2026-08-0718678294.5 KB
Marine Fuels

Get specific marine fuel port with prices

Retrieve detailed information about a specific marine fuel port including current bunker prices for all available fuel grades.

get/v1/marine-ports/{port_code}

Path parameters

port_code'SGSIN' | 'NLRTM' | 'USHOU' | 'AEFUJ' | 'HKHKG' | 'USLAX' | 'USNYC' | 'BRSSZ' required
Example:SGSIN

Port identifier code

Response

Port details with current prices

statusstring

Example response

{
  "status": "success",
  "data": {
    "port": {
      "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",
      "metadata": {
        "timezone": "Asia/Singapore",
        "annual_volume_mt": 50000000
      },
      "recent_prices": [
        {
          "fuel_type": "MGO_05S",
          "fuel_name": "Marine Gas Oil 0.5%S",
          "price": 682.5,
          "formatted": "$682.50",
          "currency": "USD",
          "unit": "metric_ton",
          "source": "market_reporting",
          "timestamp": "2025-08-05T00:32:05.928Z"
        }
      ],
      "statistics": {
        "total_fuel_types": 4,
        "recent_price_updates": 10,
        "last_update": "2025-08-05T00:32:10Z"
      }
    }
  }
}