Barter.VG API

Free to Use Varies (check documentation)

Overview

Barter.VG aggregates data about PC games, DLC, bundles, giveaways, and trading from Steam and other platforms. No API key is required, so you can start querying game information right away. It is useful for developers building deal trackers, game libraries, or gift exchange apps.

💡

Beginner Tip

No API key needed. Start with the /api/game/{appid}/ endpoint using any Steam App ID to retrieve trade and bundle data for a specific game.

Available Data

stock price and symbol
open/close/high/low values
trading volume
market cap
historical price data

Example Response

JSON Response
{
  "id": 1,
  "name": "Barter.VG",
  "data": "Provides information about Game, DLC, Bundles, Giveaways, Trading",
  "source": "Barter.VG"
}

Field Reference

app_id Steam application ID of the game
name Title of the game or DLC
bundles List of bundles that have included this game
giveaways Historical giveaway records for the game
trading Trade statistics including number of users offering or wanting the game

Implementation Example

const url = "https://github.com/bartervg/barter.vg/wiki";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

Common Errors & Troubleshooting

404 Not Found The Steam App ID does not exist in the Barter.VG database
Verify the App ID on store.steampowered.com first, then try the request again
Unexpected response format The API may return HTML for error cases instead of JSON
Always check the Content-Type header and handle non-JSON responses gracefully in your code
Rate limiting or slow response Too many requests in a short period
Add a delay between requests and cache results locally to reduce API calls

Matrix Score Breakdown

🌐 Reachability 30/30
⚡ Speed 20/20
🔒 Security 15/15
🛠 Developer XP 20/20
✓ Reliability 7/15
Response Time 50ms

Fully tested on Apr 5, 2026

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS YES
Category Games & Comics
Difficulty Beginner
Verified: 2026-04-04

Similar APIs

View All →