Endpoint Playground
Test Crawlora's Steam Batch Store 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/items?appids=<appids>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| appids | string | Yes | Comma-separated numeric app ids (max 100) | |
| cc | string | No | Store country code (ISO, selects currency) | |
| l | string | No | Steam store language name |
{
"code": 200,
"msg": "OK",
"data": {
"count": 1,
"items": [
{
"appid": 1623730,
"name": "Palworld",
"url": "https://store.steampowered.com/app/1623730/Palworld",
"review_summary": "Very Positive",
"review_count": 361068,
"review_percent_positive": 94,
"platforms": {
"windows": true,
"mac": false,
"linux": false
},
"price_overview": {
"initial": 2999,
"final": 2099,
"discount_percent": 30,
"final_formatted": "$20.99"
},
"tags": [
{
"tagid": 1695,
"weight": 942
},
{
"tagid": 1662,
"weight": 852
}
]
}
],
"source_url": "https://api.steampowered.com/IStoreBrowseService/GetItems/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.
Resolves up to 100 Steam app ids in one call to normalized store items via Steam's keyless IStoreBrowseService, each carrying its WEIGHTED community tags, review-score breakdown, developer/publisher credits, release date, platforms and price. The batch enrichment primitive for the community-tag taxonomy. Credential-free public Steam store query API.
{
"code": 200,
"msg": "OK",
"data": {
"count": 1,
"items": [
{
"appid": 1623730,
"name": "Palworld",
"url": "https://store.steampowered.com/app/1623730/Palworld",
"review_summary": "Very Positive",
"review_count": 361068,
"review_percent_positive": 94,
"platforms": {
"windows": true,
"mac": false,
"linux": false
},
"price_overview": {
"initial": 2999,
"final": 2099,
"discount_percent": 30,
"final_formatted": "$20.99"
},
"tags": [
{
"tagid": 1695,
"weight": 942
},
{
"tagid": 1662,
"weight": 852
}
]
}
],
"source_url": "https://api.steampowered.com/IStoreBrowseService/GetItems/v1/?input_json=..."
}
}curl "https://api.crawlora.net/api/v1/steam/items?appids=<appids>" \
-H "x-api-key: $CRAWLORA_API_KEY"