Everything you need to integrate Vanguard into your game.
Buy and sell items on the Vanguard marketplace.
/api/v1/shop/items?page={page}&limit={limit}&search={query}&sort={sort}List marketplace items with pagination, search, and sorting.
page — Page number (default: 1)
limit — Items per page (default: 20)
search — Search query string
sort — Sort: "newest", "popular", "price_asc", "price_desc"/api/v1/shop/items/buyPurchase an item from the marketplace. Deducts from your account balance.
{
"itemId": "item_abc123"
}Requires sellerAuthorization: true on your account.
/api/v1/shop/items/createCreate a new marketplace listing.
/api/v1/shop/items/updateUpdate an existing listing (name, description, price, etc.).
/api/v1/shop/items/deleteDelete a marketplace listing.
/api/v1/shop/restock/{productId}Add or update license keys for a product.
/api/v1/shop/licenses?productId={productId}Get all licenses associated with a product.
/api/v1/shop/statistics?range={range}Get sales statistics for your shop.
"7d" — Last 7 days
"30d" — Last 30 days
"6m" — Last 6 months
"1y" — Last year
"lifetime" — All time