Live price preview
Here is what the current US WoW Token price looks like as a simple text badge:
Loading…
Option 1 - Plain HTML link (recommended)
The simplest embed is a plain link. Paste this wherever you want to reference the current token price:
<a href="https://thewowdb.com/wow-token/us/">
US WoW Token Price - TheWoWDB
</a>
Change us to eu, kr, or tw for other regions.
Option 2 - JavaScript badge (live price)
This snippet fetches the current price from our JSON endpoint and displays it inline. Requires JavaScript. The badge updates on page load.
<span id="wgf-token-badge">Loading WoW Token price…</span>
<script>
fetch('https://thewowdb.com/wow-token/us/current.json')
.then(r => r.json())
.then(d => {
var el = document.getElementById('wgf-token-badge');
if (el && d.token_price_gold) {
el.innerHTML = '<a href="' + d.url + '">US WoW Token: '
+ d.token_price_gold.toLocaleString() + 'g</a> (TheWoWDB)';
}
})
.catch(function(){});
</script>
JSON API endpoints
Fetch current token prices directly in your app, bot, or script. No API key required. Updated about every hour from Blizzard's API.
| Region | Endpoint |
|---|---|
| All regions | /wow-token/current.json |
| US | /wow-token/us/current.json |
| EU | /wow-token/eu/current.json |
| KR | /wow-token/kr/current.json |
| TW | /wow-token/tw/current.json |
Example US response:
{
"site": "TheWoWDB",
"url": "https://thewowdb.com/wow-token/us/",
"game": "World of Warcraft Retail",
"region": "US",
"token_price_gold": 259022,
"source": "Blizzard API",
"last_updated_utc": "2026-06-15T21:25:13+00:00",
"freshness": "live"
}
Usage terms
- Free to use. No API key, no account, no rate limits for reasonable use.
- Please link back to TheWoWDB (thewowdb.com) when embedding.
- TheWoWDB is an independent fan site and is not affiliated with Blizzard Entertainment.
- Data is sourced from Blizzard's official WoW Token API. TheWoWDB makes no guarantees about data accuracy or uptime.