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

Vlsfo Ushou (VLSFO_USHOU_USD)

Status: ✅ Available | ⚡ Real-time | 📊 Live Data

Marine fuel prices for Vlsfo Ushou. Used for maritime vessel operations, with prices varying significantly by port and fuel specification.


Quick Reference

PropertyValue
Commodity CodeVLSFO_USHOU_USD
NameVlsfo Ushou
CategoryMarine Fuels
CurrencyUSD
UnitUSD/MT
Current Price$406.50

| Last Updated | 2025-12-16T12:13:12Z | | Source | shipandbunker |


Get Latest Price

GET/v1/prices/latest?by_code=VLSFO_USHOU_USD

Request

curl -X GET "https://api.oilpriceapi.com/v1/prices/latest?by_code=VLSFO_USHOU_USD" \
  -H "Authorization: Token YOUR_API_KEY" \
  -H "Accept: application/json"

Response

{
  "status": "success",
  "data": {
    "price": 406.5,
    "formatted": "$406.50",
    "currency": "USD",
    "code": "VLSFO_USHOU_USD",
    "created_at": "2025-12-16T12:13:12Z",
    "type": "spot_price",
    
    "source": "shipandbunker"
  }
}

Get Historical Data

Past 24 Hours

GET /v1/prices/past_day?by_code=VLSFO_USHOU_USD

Past 7 Days

GET /v1/prices/past_week?by_code=VLSFO_USHOU_USD

Past 30 Days

GET /v1/prices/past_month?by_code=VLSFO_USHOU_USD

Past Year

GET /v1/prices/past_year?by_code=VLSFO_USHOU_USD

See Historical Prices API for full documentation.


Code Examples

cURL

# Get latest price
curl -H "Authorization: Token YOUR_API_KEY" \
  "https://api.oilpriceapi.com/v1/prices/latest?by_code=VLSFO_USHOU_USD"

Python

import requests

api_key = "YOUR_API_KEY"
url = "https://api.oilpriceapi.com/v1/prices/latest"

response = requests.get(
    url,
    params={"by_code": "VLSFO_USHOU_USD"},
    headers={"Authorization": f"Token {api_key}"}
)

data = response.json()
print(f"Vlsfo Ushou: {data['data']['formatted']}")

JavaScript

const apiKey = 'YOUR_API_KEY';
const code = 'VLSFO_USHOU_USD';

fetch(`https://api.oilpriceapi.com/v1/prices/latest?by_code=${code}`, {
  headers: {
    'Authorization': `Token ${apiKey}`
  }
})
  .then(res => res.json())
  .then(data => {
    console.log(`Vlsfo Ushou: ${data.data.formatted}`);
  });

Related Endpoints

  • Get All Prices - Get all commodity prices in one call
  • Historical Prices - Time-series data
  • Commodities List - Browse all commodities

Last Updated: 2025-12-16

Last Updated: 12/28/25, 12:24 AM