Skip to main content
POST
/
api
/
steam
/
apps
/steam/apps
curl --request POST \
  --url https://api.anysite.io/api/steam/apps \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "appid": "<string>",
  "timeout": 300,
  "cc": "us",
  "language": "en"
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "@type": "@steam_app",
    "type": "<string>",
    "is_free": false,
    "required_age": 123,
    "controller_support": "<string>",
    "short_description": "<string>",
    "about_the_game": "<string>",
    "detailed_description": "<string>",
    "supported_languages": "<string>",
    "website": "<string>",
    "image": "<string>",
    "capsule_image": "<string>",
    "background": "<string>",
    "release_date": "<string>",
    "coming_soon": false,
    "price": {
      "@type": "@steam_price",
      "currency": "<string>",
      "initial": 123,
      "final": 123,
      "discount_percent": 123,
      "final_formatted": "<string>"
    },
    "developers": [],
    "publishers": [],
    "genres": [],
    "categories": [],
    "platforms": {
      "@type": "@steam_platforms",
      "windows": false,
      "mac": false,
      "linux": false
    },
    "screenshots": [],
    "movies": [],
    "dlc": [],
    "packages": [],
    "metacritic": {
      "@type": "@steam_metacritic",
      "score": 123,
      "url": "<string>"
    },
    "recommendation_count": 123,
    "achievement_count": 123,
    "pc_requirements": {
      "@type": "@steam_requirements",
      "minimum": "<string>",
      "recommended": "<string>"
    },
    "mac_requirements": {
      "@type": "@steam_requirements",
      "minimum": "<string>",
      "recommended": "<string>"
    },
    "linux_requirements": {
      "@type": "@steam_requirements",
      "minimum": "<string>",
      "recommended": "<string>"
    },
    "ratings": [],
    "content_descriptors": {
      "@type": "@steam_content_descriptors",
      "ids": [],
      "notes": "<string>"
    },
    "package_groups": [],
    "support_url": "<string>",
    "support_email": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
appid
string
required

Steam app ID (numeric) or store URL

Minimum string length: 1
Examples:

"730"

"1086940"

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_app
type
string | null
is_free
boolean
default:false
required_age
integer | null
controller_support
string | null
short_description
string | null
about_the_game
string | null
detailed_description
string | null
supported_languages
string | null
website
string | null
image
string | null
capsule_image
string | null
background
string | null
release_date
string | null
coming_soon
boolean
default:false
price
SteamPrice · object
developers
string[]
publishers
string[]
genres
SteamGenre · object[]
categories
SteamCategory · object[]
platforms
SteamPlatforms · object
screenshots
SteamScreenshot · object[]
movies
SteamMovie · object[]
dlc
integer[]
packages
integer[]
metacritic
SteamMetacritic · object
recommendation_count
integer | null
achievement_count
integer | null
pc_requirements
SteamRequirements · object
mac_requirements
SteamRequirements · object
linux_requirements
SteamRequirements · object
ratings
SteamRating · object[]
content_descriptors
SteamContentDescriptors · object
package_groups
SteamPackageGroup · object[]
support_url
string | null
support_email
string | null