Oil Price API Documentation - Quick Start in 5 Minutes | REST API
GitHub
GitHub
  • Interactive Explorer

    • Interactive API Explorer
  • Price Data

    • API Reference
    • Get Latest Prices
    • Historical Prices
  • Commodities

    • List Commodities
    • Get Commodity Details
  • Marine Fuels

    • List Marine Fuel Ports
    • Get Port Details with Prices
  • Premium Endpoints

    • All Prices API - One Call, All Commodities
    • Cushing Oil Storage Intelligence API
    • Drilling Intelligence API
    • Marine Fuels API
    • ICE Brent Futures API
  • Futures

    • Futures API
    • ICE Brent Futures
    • ICE WTI Futures
    • ICE Gas Oil Futures
    • NYMEX Natural Gas Futures
    • ICE EUA Carbon Futures
  • Dark Data (Premium)

    • Energy Intelligence API
    • Rig Counts
    • Well Permits
    • Oil Inventories
    • OPEC Production
    • Drilling Productivity
    • Forecasts (STEO)
  • Analytics

    • Analytics API
  • Account & Billing

    • Account API

List Marine Fuel Ports

Get a list of all available marine fuel ports with their details and capabilities.

Endpoint

GET /v1/marine-ports

Authentication

This endpoint requires authentication. Include your API key in the request header:

Authorization: Token YOUR_API_KEY

Query Parameters

ParameterTypeDescription
regionstringFilter by geographic region (Asia, Europe, Americas, Middle East)
countrystringFilter by country code
major_portsbooleanReturn only major bunkering hubs

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"
      }
      // ... more ports
    ],
    "count": 8,
    "filters": {
      "region": null,
      "country": null,
      "major_ports_only": false
    }
  }
}

Examples

Get all ports

curl -H "Authorization: Token YOUR_API_KEY" \
  https://api.oilpriceapi.com/v1/marine-ports

Get Asian ports only

curl -H "Authorization: Token YOUR_API_KEY" \
  https://api.oilpriceapi.com/v1/marine-ports?region=Asia

Get major ports only

curl -H "Authorization: Token YOUR_API_KEY" \
  https://api.oilpriceapi.com/v1/marine-ports?major_ports=true

Response Fields

  • code: Unique port identifier (e.g., SGSIN for Singapore)
  • name: Port name
  • country: Country where port is located
  • region: Geographic region (Asia, Europe, Americas, Middle East)
  • major_port: Boolean indicating if this is a major bunkering hub
  • coordinates: Latitude and longitude of the port
  • fuel_services: Array of available fuel types at this port
  • trading_hours: Operating hours for bunker operations

Need More Ports?

This endpoint returns our 8 major bunkering hubs with direct price feeds. If you need broader coverage, our Ship&Bunker Data Connector provides access to 218 ports across Americas, EMEA, and Asia-Pacific.

CoverageThis EndpointBYOS Connector
Ports8 major hubs218 ports
Regions43 (detailed)
Fuel Types43 (VLSFO, MGO, IFO380)
Data SourceDirect feedsYour Ship&Bunker subscription

The BYOS (Bring Your Own Subscription) connector lets you connect your existing Ship&Bunker subscription and access all 218 ports via API.

Learn more about the Ship&Bunker Data Connector →

Last Updated: 2/3/26, 1:27 AM
Next
Get Port Details with Prices