Developer API

Currency API

Live wisselkoersen om Steam- en marketplace-prijzen te converteren tussen 100+ ondersteunde valuta's.

Endpoints

All endpoints return JSON, accept the same auth header, and degrade with a normalised error envelope.

GET /currency/api/list
GET /currency/api/exchange

Currency API — quickstart

Same auth header as every other endpoint we ship. Get an API key from the dashboard and you're querying inside two minutes.

  • Single auth header, JSON response.
  • Rate limits scale with your plan tier.
  • Full schema in the API reference.
API Request
# curl with API key
curl "https://www.steamwebapi.com/currency/api/list?key=$KEY"
# PHP
$res = file_get_contents('https://www.steamwebapi.com/currency/api/list?key=' . $KEY);
$data = json_decode($res, true);
# Node.js
const r = await fetch(`https://www.steamwebapi.com/currency/api/list?key=${KEY}`);
const data = await r.json();

About this API

Elk prijs-endpoint van deze API accepteert een ?currency=-parameter en converteert direct. Maar soms heb je de ruwe koersen nodig: daar dient dit endpoint voor.

FAQ

Welke valuta's worden ondersteund?

Meer dan 100, waaronder USD, EUR, GBP, CNY, RUB, BRL, PLN, JPY. GET /currency/api/list voor de volledige lijst.

Hoe vaak worden de koersen ververst?

Dagelijks vanuit de upstream ECB-data. Server-side gecacht voor de prestaties.

Kan ik prijzen inline converteren op andere endpoints?

Ja — elk prijs-endpoint accepteert ?currency=EUR (of andere). De conversie wordt server-side toegepast via dezelfde koerstabel.

Start building with the Currency API

One key, every Steam endpoint.