Apps

App Details

Get detailed information about a specific Steam application including descriptions, images, pricing, and metadata.

Endpoint

This endpoint returns detailed information about a specific Steam application, including descriptions, images, pricing, system requirements, and other metadata.

GET   /v2/steam/apps/{appId}

Required parameters

appId
number
The Steam application ID.

Authentication

Include your API key as the x-api-key request header.

x-api-key: YourSecretAPIKey

Response fields

FieldTypeDescription
resultobject|nullThe app details object, or null if not found

App details object

FieldTypeDescription
_idstringDocument ID
appIdnumberSteam application ID
steamAppIdstring|nullReference to the SteamApp document
namestring|nullApplication name
typestring|nullApplication type (e.g. "game", "dlc")
requiredAgenumberMinimum required age (0 if none)
isFreebooleanWhether the app is free to play
shortDescriptionstring|nullShort description
detailedDescriptionstring|nullFull HTML description
aboutTheGamestring|nullAbout the game HTML content
developersstringList of developer names
publishersstringList of publisher names
headerImagestring|nullHeader image URL
capsuleImagestring|nullCapsule image URL
capsuleImageV5string|nullCapsule image v5 URL
backgroundstring|nullBackground image URL
backgroundRawstring|nullRaw background image URL
screenshotsarrayArray of screenshot objects
moviesarrayArray of movie/trailer objects
categoriesarrayArray of category objects
genresarrayArray of genre objects
platformsobjectPlatform availability
metacriticobjectMetacritic score data
recommendationsobjectRecommendation count
achievementsobjectAchievement data
releaseDateobjectRelease date information
supportInfoobjectSupport contact information
websitestring|nullOfficial website URL
legalNoticestring|nullLegal notice text
reviewsstring|nullReview quotes
pcRequirementsobjectPC system requirements
macRequirementsobjectMac system requirements
linuxRequirementsobjectLinux system requirements
priceOverviewobjectCurrent pricing information
packagesnumberAvailable package IDs
packageGroupsarrayPackage group details
dlcnumberRelated DLC app IDs
contentDescriptorsobjectContent descriptor information
controllerSupportstring|nullController support level
supportedLanguagesstring|nullSupported languages HTML string
ratingsobject|nullRegional age ratings

Nested objects

screenshots

FieldTypeDescription
idnumberScreenshot ID
pathThumbnailstringThumbnail URL
pathFullstringFull resolution URL

movies

FieldTypeDescription
idnumberMovie ID
namestringMovie/trailer name
thumbnailstringThumbnail URL
dashAv1stringDASH AV1 stream URL
dashH264stringDASH H.264 stream URL
hlsH264stringHLS H.264 stream URL
highlightbooleanWhether this is a highlighted trailer

categories / genres

FieldTypeDescription
idnumber/stringCategory or genre ID
descriptionstringCategory or genre name

platforms

FieldTypeDescription
windowsbooleanAvailable on Windows
macbooleanAvailable on Mac
linuxbooleanAvailable on Linux

metacritic

FieldTypeDescription
scorenumber|nullMetacritic score
urlstring|nullMetacritic page URL

releaseDate

FieldTypeDescription
comingSoonbooleanWhether the game is unreleased
datestring|nullRelease date string

priceOverview

FieldTypeDescription
currencystring|nullCurrency code (e.g. "USD")
initialnumber|nullInitial price in cents
finalnumber|nullFinal price in cents (after discount)
discountPercentnumberDiscount percentage (0 if none)
initialFormattedstring|nullFormatted initial price
finalFormattedstring|nullFormatted final price

pcRequirements / macRequirements / linuxRequirements

FieldTypeDescription
minimumstring|nullMinimum requirements HTML
recommendedstring|nullRecommended requirements HTML

Response example

response.json
{
  "success": true,
  "result": {
    "_id": "6789abcdef012345",
    "appId": 730,
    "name": "Counter-Strike 2",
    "type": "game",
    "requiredAge": 0,
    "isFree": true,
    "shortDescription": "Counter-Strike 2 expands upon the team-based action gameplay...",
    "developers": ["Valve"],
    "publishers": ["Valve"],
    "headerImage": "https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/730/header.jpg",
    "platforms": {
      "windows": true,
      "mac": false,
      "linux": true
    },
    "genres": [
      { "id": "1", "description": "Action" },
      { "id": "37", "description": "Free to Play" }
    ],
    "releaseDate": {
      "comingSoon": false,
      "date": "21 Aug, 2012"
    },
    "priceOverview": {
      "currency": "USD",
      "initial": 0,
      "final": 0,
      "discountPercent": 0,
      "initialFormatted": "",
      "finalFormatted": "Free to Play"
    }
  }
}