Get All Bundles
GET /bundles/all
Retrieves all available bundles for a specific game, including item details and availability status.
The game ID to fetch bundles for.
Supported Games
| Game ID | Game |
|---|---|
440 | Team Fortress 2 |
730 | Counter-Strike 2 |
570 | Dota 2 |
252490 | Rust |
| Field | Type | Description |
|---|---|---|
id | integer | Bundle unique identifier |
name | string | Bundle display name |
game | integer | Game ID |
items | array | Array of items included in the bundle |
total_value | integer | Sum of individual item values (cents) |
bundle_price | integer | Discounted bundle price (cents) |
available | boolean | Whether all items are currently available |
addtocart | integer | Number of times this bundle has been added to cart |
| Status | Message |
|---|---|
error | Game is required |
error | Game not supported |
Track Bundle Add to Cart
GET /bundles/add
Increments the “add to cart” counter for a specific bundle. Used for analytics tracking.
The bundle ID to track.
| Status | Message |
|---|---|
error | Missing required parameter: id |
error | Invalid bundle id |
error | Bundle not found |