Rusthelp APIrusthelp.com ↗
Track current and historical weekly Rust item store listings with complete details including images, prices, stats, and tags to plan your purchases and monitor price trends. Check specific store snapshots by ID to compare what items were available and priced at any point in time.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/6b0b0b9e-3a58-4631-959f-7c02c20c9033/get_current_store' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns the current (latest) weekly Rust item store with all items and store metadata. The store rotates weekly; calling this endpoint always returns the active store. Each item includes name, type, price, image URL, sales stats, acceptance time, and property tags.
No input parameters required.
{
"type": "object",
"fields": {
"items": "Array of store item objects with name, slug, item_type, price_usd, image_url, min_sales, other_skins, time_to_accept, and tags",
"store_id": "Numeric store ID (e.g. 1828)",
"time_left": "Remaining time until store rotation (e.g. '7d 0h 53m')",
"started_on": "Date the store started in MM/DD/YYYY format",
"items_count": "Number of items available in the store"
},
"sample": {
"data": {
"items": [
{
"name": "Pirate Small Backpack",
"slug": "pirate-small-backpack",
"tags": [
"Tradable",
"Crate Drop"
],
"image_url": "https://files.facepunch.com/rust/icons/inventory/rust/70207_small.png?1918250369",
"item_type": "smallbackpack",
"min_sales": 808,
"price_usd": 1.49,
"other_skins": 3,
"time_to_accept": "11d, 8h, 33min"
},
{
"name": "Salvation Assault Rifle",
"slug": "salvation-assault-rifle",
"tags": [
"Modified Sight",
"Transparent",
"Marketable",
"Tradable"
],
"image_url": "https://files.facepunch.com/rust/icons/inventory/rust/70202_small.png?2907748640",
"item_type": "Assault Rifle",
"min_sales": 740,
"price_usd": 3.99,
"other_skins": 337,
"time_to_accept": "9d, 11h, 29min"
}
],
"store_id": "1828",
"time_left": "7d 0h 53m",
"started_on": "08/13/2026",
"items_count": 10
},
"status": "success"
}
}About the Rusthelp API
The Rusthelp API on Parse exposes 2 endpoints for the publicly available data on rusthelp.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.