Endpoint Playground
Test Crawlora's Steam Package Details 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/package?packageid=<packageid>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| packageid | string | Yes | Numeric Steam package id | |
| cc | string | No | Store country code (ISO, selects currency) | |
| l | string | No | Language code |
{
"code": 200,
"msg": "OK",
"data": {
"packageid": 68179,
"name": "Portal Bundle",
"apps": [
{
"id": "400",
"description": "Portal"
},
{
"id": "620",
"description": "Portal 2"
}
],
"price": {
"currency": "USD",
"initial": 1998,
"final": 1998,
"discount_percent": 0
},
"platforms": {
"windows": true,
"mac": true,
"linux": true
},
"source_url": "https://store.steampowered.com/api/packagedetails?packageids=68179&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 normalized details for a Steam package (a purchasable bundle): name, the apps it contains, price, platforms, and release date. cc selects the store region and price currency. Credential-free public Steam storefront JSON.
{
"code": 200,
"msg": "OK",
"data": {
"packageid": 68179,
"name": "Portal Bundle",
"apps": [
{
"id": "400",
"description": "Portal"
},
{
"id": "620",
"description": "Portal 2"
}
],
"price": {
"currency": "USD",
"initial": 1998,
"final": 1998,
"discount_percent": 0
},
"platforms": {
"windows": true,
"mac": true,
"linux": true
},
"source_url": "https://store.steampowered.com/api/packagedetails?packageids=68179&cc=us&l=en"
}
}curl "https://api.crawlora.net/api/v1/steam/package?packageid=<packageid>" \
-H "x-api-key: $CRAWLORA_API_KEY"