OFAC · UN · EU · UK sanctions screenedZero-retention AIGDPR · CCPA program
BRENT100.09+0.96|WTI94.98+0.58|DUBAI98.09|BR-WTI5.11|BR-DB2.00|USD/PKR280.10|USD/AED3.67|

Put the OilFlow ticker on your site.
Drop one line of HTML.

Live Brent, WTI, Dubai, and spread. Updates every 15 minutes. No signup. No API key. Free for brokers, research sites, newsletters, and internal dashboards. Attribution required — keep the OilFlow Network link visible.

Script tag (easiest)

Paste the script tag anywhere on your page. Wherever a <div data-oilflow-ticker> appears, the ticker mounts.

<script async src="https://oilflow.us/api/embed/ticker.js"></script>
<div data-oilflow-ticker data-theme="dark"></div>

Optional data-theme attribute: dark (default) or light.

Direct iframe

Skip the script and drop the iframe directly if your site blocks third-party scripts.

<iframe
  src="https://oilflow.us/api/embed/ticker-widget?theme=dark"
  width="100%"
  height="44"
  style="border:0;background:transparent;"
  scrolling="no"
  title="OilFlow live ticker"
  loading="lazy"
></iframe>

JSON API (roll your own)

If you want the data without the UI, hit the JSON endpoint. CORS-permissive, same caching as the iframe.

fetch("https://oilflow.us/api/embed/ticker")
  .then(r => r.json())
  .then(data => {
    // { date, brent, wti, dubai, spread, source, attribution_url }
    console.log(data);
  });

Endpoint: /api/embed/ticker

What it looks like rendered.

The ticker is free for any use as long as the OilFlow Network attribution link stays visible and clickable. You may not remove or overlay the attribution. Otherwise, use it anywhere — broker site, newsletter, internal dashboard, trading room display.

We reserve the right to update the visual design and refresh cadence. If you are building something that depends on specific formatting, subscribe to the changelog.

Want the data behind the ticker?

Our full API covers listings, matches, signals, and audit exports. Built for members.