Endpoint Playground
Test Crawlora's Steam Featured Items 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" \
-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": {
"featured_win": [
{
"id": 1091500,
"name": "Cyberpunk 2077",
"discounted": true,
"discount_percent": 50,
"original_price": 5999,
"final_price": 2999,
"currency": "USD",
"windows_available": true
}
],
"featured_mac": [],
"featured_linux": [],
"large_capsules": [
{
"id": 730,
"name": "Counter-Strike 2",
"discounted": false
}
],
"source_url": "https://store.steampowered.com/api/featured?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's featured capsules for a region (per-platform featured lists plus large spotlight capsules), including discount and price fields. Credential-free public Steam storefront JSON.
{
"code": 200,
"msg": "OK",
"data": {
"featured_win": [
{
"id": 1091500,
"name": "Cyberpunk 2077",
"discounted": true,
"discount_percent": 50,
"original_price": 5999,
"final_price": 2999,
"currency": "USD",
"windows_available": true
}
],
"featured_mac": [],
"featured_linux": [],
"large_capsules": [
{
"id": 730,
"name": "Counter-Strike 2",
"discounted": false
}
],
"source_url": "https://store.steampowered.com/api/featured?cc=us&l=en"
}
}curl "https://api.crawlora.net/api/v1/steam/featured" \
-H "x-api-key: $CRAWLORA_API_KEY"