Skip to content

Get Library App Details

Revadike edited this page Jul 6, 2021 · 8 revisions

GET /api/libraryappdetails

Rate limits

No known rate limit

Request

Authenticated: No

Method: GET

Host: store.steampowered.com

Path: /api/libraryappdetails

Query Parameters:

Name Type Required Description
appid number Yes The Steam AppID
l string No Language

Response

200 OK

Name Type Description
status number 1 do have a store page, 2 do not have a store page
appid string The Steam AppID
name string Title of the app
strFullDescription string ABOUT THIS GAME section of the store page (HTML string), empty string if none.
strSnippet string Short description, length: 200-300 characters, empty string if none.
rgDevelopers[] array Array of developers
rgDevelopers[].name string Name of the developer, null if none
rgDevelopers[].url string Website of the developer, null if none
rgPublishers[] array Array of publishers
rgPublishers[].name string Name of the publisher, null if none
rgPublishers[].url string Website of the publisher, null if none
rgSocialMedia[] array Array of social media

Example

GET https://store.steampowered.com/api/libraryappdetails/?appid=730
{
    "status": 1,
    "appid": "730",
    "name": "Counter-Strike: Global Offensive",
    "strFullDescription": "Counter-Strike: Global Offensive (CS: GO) expands upon the team-based action gameplay that it pioneered when it was launched 19 years ago.\r\n\r\nCS: GO features new maps, characters, weapons, and game modes, and delivers updated versions of the classic CS content (de_dust2, etc.).\r\n\r\n"Counter-Strike took the gaming industry by surprise when the unlikely MOD became the most played online PC action game in the world almost immediately after its release in August 1999," said Doug Lombardi at Valve. "For the past 12 years, it has continued to be one of the most-played games in the world, headline competitive gaming tournaments and selling over 25 million units worldwide across the franchise. CS: GO promises to expand on CS' award-winning gameplay and deliver it to gamers on the PC as well as the next gen consoles and the Mac."",
    "strSnippet": "Counter-Strike: Global Offensive (CS: GO) expands upon the team-based action gameplay that it pioneered when it was launched 19 years ago. CS: GO features new maps, characters, weapons, and game modes, and delivers updated versions of the classic CS content (de_dust2, etc.).",
    "rgDevelopers": [
        {
            "name": "Valve",
            "url": "https://store.steampowered.com/developer/valve"
        },
        {
            "name": "Hidden Path Entertainment",
            "url": null
        }
    ],
    "rgPublishers": [
        {
            "name": "Valve",
            "url": "https://store.steampowered.com/publisher/valve"
        }
    ],
    "rgSocialMedia": []
}
Clone this wiki locally