Endpoint Playground
Test Crawlora's Steam Weekly Top Sellers API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/steam/top-sellers" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| cc | string | No | Country code (ISO) whose weekly sales ranking is returned | |
| l | string | No | Steam store language name |
{
"code": 200,
"msg": "OK",
"data": {
"country_code": "US",
"start_date_unix": 1782777600,
"count": 1,
"ranks": [
{
"rank": 1,
"appid": 730,
"item": {
"appid": 730,
"name": "Counter-Strike 2",
"url": "https://store.steampowered.com/app/730/CounterStrike_2",
"review_summary": "Very Positive",
"platforms": {
"windows": true,
"mac": false,
"linux": true
},
"tags": [
{
"tagid": 1663,
"weight": 1160
}
]
}
}
],
"source_url": "https://api.steampowered.com/IStoreTopSellersService/GetWeeklyTopSellers/v1/?input_json=..."
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns the store's weekly top-sellers chart for a country, each rank carrying the full store item (name, price, weighted community tags, review summary, platforms). cc selects the country whose sales ranking and currency are returned. Credential-free public Steam store top-sellers API.
{
"code": 200,
"msg": "OK",
"data": {
"country_code": "US",
"start_date_unix": 1782777600,
"count": 1,
"ranks": [
{
"rank": 1,
"appid": 730,
"item": {
"appid": 730,
"name": "Counter-Strike 2",
"url": "https://store.steampowered.com/app/730/CounterStrike_2",
"review_summary": "Very Positive",
"platforms": {
"windows": true,
"mac": false,
"linux": true
},
"tags": [
{
"tagid": 1663,
"weight": 1160
}
]
}
}
],
"source_url": "https://api.steampowered.com/IStoreTopSellersService/GetWeeklyTopSellers/v1/?input_json=..."
}
}curl "https://api.crawlora.net/api/v1/steam/top-sellers" \
-H "x-api-key: $CRAWLORA_API_KEY"