OilPriceAPI Docs
GitHub
GitHub

Production Go-Live and Plan Fit

Use this guide when moving from a first API call to a production workflow.

Workflow Matrix

WorkflowEndpoint Starting PointPlan Dimensions To Check
Energy software and dashboards/v1/prices/latest, /v1/prices/batch, widgetsRequest volume, display rights, caching, status checks
Trading, research, and backtesting/v1/prices/historical, futures, spreads, indicatorsHistorical depth, futures access, premium analytics, source timestamps
Transport, aviation, marine, procurementdiesel, jet fuel, marine fuels, bunker fuelsUpdate cadence, region/port coverage, public display, export rights

First Production Request

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

Verify:

  • Account plan and subscription status
  • Monthly quota remaining
  • Entitlements for premium endpoints
  • Rate-limit headers on representative endpoint calls

Endpoint Selection

NeedUse
One or a few latest prices/v1/prices/latest?by_code=...
Many latest prices/v1/prices/batch
Custom historical range/v1/prices/historical
Futures curve or contract data/v1/futures/*
Marine fuel prices/v1/prices/marine-fuels/*
Alerts and push workflows/v1/alerts + /v1/webhooks

Required Production Checks

  • Confirm response timestamps are fresh enough for your workflow.
  • Implement retry/backoff only for transient failures.
  • Treat 401, 403, 402, and most 400 responses as non-retryable.
  • Cache responses by endpoint, params, currency, and code list.
  • Add a fallback for stale or unavailable data.
  • Confirm public display or redistribution rights before launch.

Upgrade and Support Paths

Use self-serve plans for ordinary internal workflows. Contact support for:

  • Enterprise quotas
  • Public display or redistribution
  • Futures/exchange-derived usage review
  • Marine, carbon, aviation, benchmark-close, or premium analytics access
  • Written data-rights confirmation

Related

  • Production Checklist
  • Rate Limiting
  • Data Usage Policy
  • Account API
Last Updated: 7/16/26, 1:53 PM