Endpoint Playground
Test Crawlora's Steam Store Search (Typeahead) 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/search?term=portal" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| term | string | Yes | portal | Search term |
| cc | string | No | Store country code (ISO, selects currency) | |
| l | string | No | Language code |
{
"code": 200,
"msg": "OK",
"data": {
"term": "portal",
"total": 3,
"count": 3,
"items": [
{
"type": "app",
"id": 400,
"name": "Portal",
"price": {
"currency": "USD",
"initial": 999,
"final": 999
},
"metascore": "90",
"platforms": {
"windows": true,
"mac": true,
"linux": true
}
}
],
"source_url": "https://store.steampowered.com/api/storesearch/?term=portal&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.
Resolves a search term to Steam apps via the store typeahead JSON (title, appid, price, platforms, metascore). Best for title -> appid lookup; returns roughly ten results. For faceted, paginated search use /steam/search/results. Credential-free public Steam storefront JSON.
{
"code": 200,
"msg": "OK",
"data": {
"term": "portal",
"total": 3,
"count": 3,
"items": [
{
"type": "app",
"id": 400,
"name": "Portal",
"price": {
"currency": "USD",
"initial": 999,
"final": 999
},
"metascore": "90",
"platforms": {
"windows": true,
"mac": true,
"linux": true
}
}
],
"source_url": "https://store.steampowered.com/api/storesearch/?term=portal&cc=us&l=en"
}
}curl "https://api.crawlora.net/api/v1/steam/search?term=<term>" \
-H "x-api-key: $CRAWLORA_API_KEY"