Endpoint Playground
Test Crawlora's Steam Category / Tag Catalog Slice 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/category/rogue_like" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | rogue_like | Community tag id (numeric) or tag name slug |
| free | boolean | No | Only free titles | |
| released_only | boolean | No | Only already-released titles | |
| coming_soon_only | boolean | No | Only unreleased / coming-soon titles | |
| start | integer | No | Result offset for pagination | |
| count | integer | No | Results per page (max 100) | |
| cc | string | No | Store country code (ISO, selects currency) | |
| l | string | No | Steam store language name |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "rogue_like",
"tag_id": 1716,
"tag_name": "Rogue-like",
"total": 31544,
"start": 0,
"count": 1,
"items": [
{
"appid": 1623730,
"name": "Palworld",
"url": "https://store.steampowered.com/app/1623730/Palworld",
"short_description": "Fight, farm, build and work alongside mysterious creatures called Pals.",
"developers": [
"Pocketpair"
],
"publishers": [
"Pocketpair"
],
"release_date_unix": 1705651175,
"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,
"initial_formatted": "$29.99",
"final_formatted": "$20.99"
},
"tags": [
{
"tagid": 1695,
"weight": 942
},
{
"tagid": 1662,
"weight": 852
}
]
}
],
"source_url": "https://api.steampowered.com/IStoreQueryService/Query/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 a catalog slice for a community tag / category via Steam's keyless IStoreQueryService, carrying each item's WEIGHTED community tags, review-score breakdown, developer/publisher credits, release date, platforms and price. The slug is a numeric tag id or a tag name (case- and separator-insensitive, e.g. rogue_like); resolve ids via /steam/tags/list. Ordering is Steam's default relevance — for sorted or os/price-faceted browse use /steam/tags. Credential-free public Steam store query API.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "rogue_like",
"tag_id": 1716,
"tag_name": "Rogue-like",
"total": 31544,
"start": 0,
"count": 1,
"items": [
{
"appid": 1623730,
"name": "Palworld",
"url": "https://store.steampowered.com/app/1623730/Palworld",
"short_description": "Fight, farm, build and work alongside mysterious creatures called Pals.",
"developers": [
"Pocketpair"
],
"publishers": [
"Pocketpair"
],
"release_date_unix": 1705651175,
"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,
"initial_formatted": "$29.99",
"final_formatted": "$20.99"
},
"tags": [
{
"tagid": 1695,
"weight": 942
},
{
"tagid": 1662,
"weight": 852
}
]
}
],
"source_url": "https://api.steampowered.com/IStoreQueryService/Query/v1/?input_json=..."
}
}curl "https://api.crawlora.net/api/v1/steam/category/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"