Barter.VG
Game, DLC, bundle and giveaway data for trading
Barter.vg is a game-trading tracker whose pages expose JSON by appending /json to routes — user libraries and wishlists, item lookups, bundles and giveaways. The Steam-app lookup returns a game's trade stats: how many users have it tradable, wishlisted or in-library, plus pricing and release info. No key required.
GET https://barter.vg/steam/app/220/json
{
"id": 212,
"source_name": "Steam",
"sku": 220,
"title": "Half-Life 2",
"item_type": "Game",
"is_tradable": 1,
"tradable": 6,
"wishlist": 2,
"year": "2004"
}curl "https://barter.vg/steam/app/220/json"const res = await fetch("https://barter.vg/steam/app/220/json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://barter.vg/steam/app/220/json")
print(res.json())/steam/app/220/jsonPROBEDGame, DLC, bundle and giveaway data for trading
/steamSteam — documented GET route.
/steam/1Steam details by ID (example: 1).
/steam?limit=10Steam — documented GET route.
/steam/search?q=testSearch by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Barter.VG: common questions
Is Barter.VG free to use?
Yes — Barter.VG is a free games API. Free tier: Free — no key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Barter.VG need an API key?
No — Barter.VG needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Barter.VG from the browser?
Yes — Barter.VG returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Barter.VG up right now?
As of our last scheduled check, Barter.VG is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.