Skip to main content
POST
/
api
/
steam
/
packages
/steam/packages
curl --request POST \
  --url https://api.anysite.io/api/steam/packages \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "packageid": "<string>",
  "timeout": 300,
  "cc": "us",
  "language": "en"
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "@type": "@steam_package",
    "image": "<string>",
    "header_image": "<string>",
    "small_logo": "<string>",
    "page_content": "<string>",
    "purchase_text": "<string>",
    "controller_support": "<string>",
    "release_date": "<string>",
    "coming_soon": false,
    "price": {
      "@type": "@steam_package_price",
      "currency": "<string>",
      "initial": 123,
      "final": 123,
      "discount_percent": 123,
      "individual": 123
    },
    "platforms": {
      "@type": "@steam_platforms",
      "windows": false,
      "mac": false,
      "linux": false
    },
    "apps": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
packageid
string
required

Steam package ID (numeric) or store URL

Minimum string length: 1
Examples:

"469"

"68179"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
cc
enum<string>
default:us

Storefront country (controls price, currency and region)

Available options:
us,
gb,
ca,
au,
de,
fr,
it,
es,
nl,
se,
jp,
kr,
cn,
in,
br,
mx,
ru,
tr,
pl,
ae,
sa,
sg,
hk,
tw,
id,
th,
vn,
ph,
my,
za
language
string
default:en

Language for localized text fields

Minimum string length: 2

Response

Successful Response

id
integer
required
name
string
required
@type
string
default:@steam_package
image
string | null
header_image
string | null
small_logo
string | null
page_content
string | null
purchase_text
string | null
controller_support
string | null
release_date
string | null
coming_soon
boolean
default:false
price
SteamPackagePrice · object
platforms
SteamPlatforms · object
apps
SteamPackageApp · object[]