Endpoint Playground
Test Crawlora's Steam Featured Categories 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/featured-categories" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| cc | string | No | Store country code (ISO, selects currency) | |
| l | string | No | Language code |
{
"code": 200,
"msg": "OK",
"data": {
"specials": {
"id": "cat_specials",
"name": "Specials",
"count": 1,
"items": [
{
"id": 1174180,
"name": "Red Dead Redemption 2",
"discounted": true,
"discount_percent": 67,
"final_price": 1979,
"currency": "USD"
}
]
},
"top_sellers": {
"id": "cat_topsellers",
"name": "Top Sellers",
"count": 0,
"items": []
},
"new_releases": {
"count": 0,
"items": []
},
"coming_soon": {
"count": 0,
"items": []
},
"source_url": "https://store.steampowered.com/api/featuredcategories?cc=us&l=en"
}
}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 storefront merchandising buckets for a region: specials, top_sellers, new_releases, and coming_soon, each with its item list. Credential-free public Steam storefront JSON.
{
"code": 200,
"msg": "OK",
"data": {
"specials": {
"id": "cat_specials",
"name": "Specials",
"count": 1,
"items": [
{
"id": 1174180,
"name": "Red Dead Redemption 2",
"discounted": true,
"discount_percent": 67,
"final_price": 1979,
"currency": "USD"
}
]
},
"top_sellers": {
"id": "cat_topsellers",
"name": "Top Sellers",
"count": 0,
"items": []
},
"new_releases": {
"count": 0,
"items": []
},
"coming_soon": {
"count": 0,
"items": []
},
"source_url": "https://store.steampowered.com/api/featuredcategories?cc=us&l=en"
}
}curl "https://api.crawlora.net/api/v1/steam/featured-categories" \
-H "x-api-key: $CRAWLORA_API_KEY"