A Steam WebAPI interface for Steam App Information.
ISteamApps
currently exists in the Steam WebAPI for other functions. This proposal is to extend the existing interface, rather than create a new interface. The goal is to expand the available data for all applications on Steam.
This proposal won't mention the other existing methods of ISteamApps
, but they should continue to exist.
This proposal assumes all software works with this interface. As long as an AppID exists for the product, it should work in the interface.
ISteamApps::GetAppList
.Unless otherwise noted, all methods will take the following input parameters, even if the method may not need them.
Key Name | Type | Description | Example |
---|---|---|---|
key | string | WebAPI Application Key. | XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX |
format | string | Requested form of output. XML, VDF, or JSON (default) | json |
language | string | ISO 639-1 language code. | en |
Unless otherwise noted, all methods will return the following parameters. For methods that return an array of results, these fields will be included at the top-most level of a return, before the array of results.
Key Name | Type | Description | Example |
---|---|---|---|
success | int | Status return number of query. Possible responses include:
|
1 |
message | string | Human readable string describing success description. |
Success |
This method provides data about a software title released on Steam.
This provides a wealth of information about titles released on Steam ranging from pricing, descriptions & titles, imagery, and other information about a given title.
TRUE
if title is a "Free to Play" title.TRUE
if title is an Early Access title.FALSE
.TRUE
if title was accepted under the Greenlight approval process.NULL
if there is no Beta AppID.ISteamApps::GetAppMedia
.
day
field will be 0.FALSE
. New features may be included as features expand.GET https://api.steampowered.com/ISteamApps/GetAppData/v0001/?appids=94590
{ "response": { "success": 1, "message": "success", "language": "en", "appids": 94590, "apps": { "94590": { "title": "Puzzle Agent 2", "developer_name": "Telltale Games", "publisher_name": "Telltale Games", "platforms": { "windows": true, "mac": true, "linux": false, "steamplay": true }, "attributes": { "free_to_play": false, "early_access": false, "greenlight": false, "beta_appid": null, "gold_appid": 94590 }, "images": { "header": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/header.jpg", "header_292": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/header_292x136.jpg", "capsule_120": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/capsule_sm_120.jpg", "capsule_184": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/capsule_184x69.jpg", "capsule_467": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/capsule_467x181.jpg", "capsule_616": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/capsule_616x353.jpg" }, "strings": { "short_desc": "Agent Nelson Tethers just solved the biggest case of his career. So why isn't he satisfied? There’s still the case of a missing eraser factory foreman, a whispering madness is still creeping from mind to mind, and a troubling recurrence of... creatures... is lurking into the town.", "copyright": "© 2011 Telltale Inc. Telltale and the Telltale Games logo are trademarks of Telltale, Inc. Based on the Grickle series of books written and illustrated by Graham Annable. All rights reserved.", "about": "<p>Agent Nelson Tethers just solved the biggest case of his career. So why isn't he satisfied? There’s still the case of a missing eraser factory foreman, a whispering madness is still creeping from mind to mind, and a troubling recurrence of... creatures... is lurking into the town.<\/p>", "key_features": "<ul><li>Sequel to the award winning Puzzle Agent (PC Gamer’s Game of the Year, IGN’s Best of E3, etc)<\/li><li>Creepy puzzle adventure with mystery and dark humor<\/li><li>Wider variety of intuitive yet challenging puzzles<\/li><\/ul>\n", "reviews": null }, "system_req": { "windows": { "minimum": "<ul>\n<ul>\n<li><strong>OS:<\/strong> XP Service Pack 3 \/ Vista \/ Windows 7\n<li><strong>Processor:<\/strong> 1.8 GHz Pentium 4 or equivalent (Rec: 2.0GHz Pentium 4 or equivalent)\n<li><strong>Memory:<\/strong> 2 GB RAM (Rec: 3GB RAM)\n<li><strong>Hard Disk Space:<\/strong> 500 Mb Space Free\n<li><strong>Video Card:<\/strong> ATI or NVidia card w\/ 256 MB RAM (Rec: ATI or NVidia card w\/ 512 MB RAM)\n<li><strong>DirectX®:<\/strong> Direct X 9.0c\n<li><strong>Sound:<\/strong> Direct X 9.0 sound device\n <\/ul>\n<\/ul>", "recommended": null }, "mac": { "minimum": "<ul>\n<ul>\n<li><strong>OS:<\/strong> OS X version Snow Leopard 10.6.3, or later.\n<li><strong>Processor:<\/strong> 2.3 GHz Intel or equivalent\n<li><strong>Memory:<\/strong> 4 GB RAM\n<li><strong>Hard Disk Space:<\/strong> 500 MB Space Free\n<li><strong>Video Card:<\/strong> 512 MB NVidia or ATI graphics card\n<li><strong>Additional:<\/strong> Not recommended for MAC Minis or early-generation MacBooks\n <\/ul>\n<\/ul>\n", "recommended": null }, "linux": { "minimum": null, "recommended": null } }, "genres": [ "adventure", "casual" ], "release_date": { "year": 2011, "month": 6, "day": 30 }, "languages": [ { "iso": "en", "name": "english", "has_voice": true, "has_subtitles": true } ], "features": { "singleplayer": true, "coop": false, "coop_local": false, "multiplayer": false, "multiPlayer_CrossPlatform": false, "controller": false, "controller_partial": false, "achievements": false, "leaderboards": false, "cloud": false, "stats": false, "stats_community": false, "big_picture": false, "workshop": false, "cards": false, "vac": false }, "links": { "official_website": "http:\/\/www.telltalegames.com\/puzzleagent2", "update_history": "http:\/\/store.steampowered.com\/news\/?feed=steam_updates&appids=94590", "official_game_hub": "http:\/\/steamcommunity.com\/app\/94590", "store_page": "http:\/\/store.steampowered.com\/app\/94590\/", "forums": "http:\/\/steamcommunity.com\/app\/94590\/discussions\/" } } } } }
<?xml version="1.0"?> <!DOCTYPE response> <response> <success>1</success> <message>success</message> <language>en</language> <appids>94590</appids> <apps> <app appid="94590"> <title>Puzzle Agent 2</title> <developer_name>Telltale Games</developer_name> <publisher_name>Telltale Games</publisher_name> <platform> <windows/> <mac/> <steamplay/> </platform> <attributes> <gold_appid>94590</gold_appid> </attributes> <images> <header>http://cdn2.steampowered.com/v/gfx/apps/94590/header.jpg</header> <header_292>http://cdn2.steampowered.com/v/gfx/apps/94590/header_292x136.jpg</header_292> <capsule_120>http://cdn2.steampowered.com/v/gfx/apps/94590/capsule_sm_120.jpg</capsule_120> <capsule_184>http://cdn2.steampowered.com/v/gfx/apps/94590/capsule_184x69.jpg</capsule_184> <capsule_467>http://cdn2.steampowered.com/v/gfx/apps/94590/capsule_467x181.jpg</capsule_467> <capsule_616>http://cdn2.steampowered.com/v/gfx/apps/94590/capsule_616x353.jpg</capsule_616> </images> <strings> <short_desc>Agent Nelson Tethers just solved the biggest case of his career. So why isn&#039;t he satisfied? There&rsquo;s still the case of a missing eraser factory foreman, a whispering madness is still creeping from mind to mind, and a troubling recurrence of... creatures... is lurking into the town.</short_desc> <copyright>&copy; 2011 Telltale Inc. Telltale and the Telltale Games logo are trademarks of Telltale, Inc. Based on the Grickle series of books written and illustrated by Graham Annable. All rights reserved.</copyright> <about><![CDATA[<p>Agent Nelson Tethers just solved the biggest case of his career. So why isn&#039;t he satisfied? There&rsquo;s still the case of a missing eraser factory foreman, a whispering madness is still creeping from mind to mind, and a troubling recurrence of... creatures... is lurking into the town.</p>]]></about> <key_features><![CDATA[<ul><li>Sequel to the award winning Puzzle Agent (PC Gamer&rsquo;s Game of the Year, IGN&rsquo;s Best of E3, etc)</li><li>Creepy puzzle adventure with mystery and dark humor</li><li>Wider variety of intuitive yet challenging puzzles</li></ul> ]]></key_features> </strings> <system_req> <windows> <minimum><![CDATA[<ul> <ul> <li><strong>OS:</strong> XP Service Pack 3 / Vista / Windows 7 <li><strong>Processor:</strong> 1.8 GHz Pentium 4 or equivalent (Rec: 2.0GHz Pentium 4 or equivalent) <li><strong>Memory:</strong> 2 GB RAM (Rec: 3GB RAM) <li><strong>Hard Disk Space:</strong> 500 Mb Space Free <li><strong>Video Card:</strong> ATI or NVidia card w/ 256 MB RAM (Rec: ATI or NVidia card w/ 512 MB RAM) <li><strong>DirectX&reg;:</strong> Direct X 9.0c <li><strong>Sound:</strong> Direct X 9.0 sound device </ul> </ul>]]></minimum> <recommended/> </windows> <mac> <minimum><![CDATA[<ul> <ul> <li><strong>OS:</strong> OS X version Snow Leopard 10.6.3, or later. <li><strong>Processor:</strong> 2.3 GHz Intel or equivalent <li><strong>Memory:</strong> 4 GB RAM <li><strong>Hard Disk Space:</strong> 500 MB Space Free <li><strong>Video Card:</strong> 512 MB NVidia or ATI graphics card <li><strong>Additional:</strong> Not recommended for MAC Minis or early-generation MacBooks </ul> </ul> ]]></minimum> <recommended/> </mac> <linux> <minimum/> <recommended/> </linux> </system_req> <genres> <genre>adventure</genre> <genre>casual</genre> </genres> <release_date> <year>2011</year> <month>6</month> <day>30</day> </release_date> <languages> <language name="english" has_voice="1" has_subtitles="1">en</language> </languages> <feature> <singleplayer/> </feature> <links> <official_website>http://www.telltalegames.com/puzzleagent2</official_website> <update_history>http://store.steampowered.com/news/?feed=steam_updates&appids=94590</update_history> <official_game_hub>http://steamcommunity.com/app/94590</official_game_hub> <store_page>http://store.steampowered.com/app/94590/</store_page> <forums>http://steamcommunity.com/app/94590/discussions/</forums> </links> </app> </apps> </response>
"response" { "success" "1" "message" "success" "language" "en" "appids" "94590" "apps" { "94590" { "title" "Puzzle Agent 2" "developer_name" "Telltale Games" "publisher_name" "Telltale Games" "platforms" { "windows" "1" "mac" "1" "linux" "0" "steamplay" "1" } "attributes" { "free_to_play" "0" "early_access" "0" "greenlight" "0" "beta_appid" "" "gold_appid" "94590" } "images" { "header" "http://cdn2.steampowered.com/v/gfx/apps/94590/header.jpg" "header_292" "http://cdn2.steampowered.com/v/gfx/apps/94590/header_292x136.jpg" "capsule_120" "http://cdn2.steampowered.com/v/gfx/apps/94590/capsule_sm_120.jpg" "capsule_184" "http://cdn2.steampowered.com/v/gfx/apps/94590/capsule_184x69.jpg" "capsule_467" "http://cdn2.steampowered.com/v/gfx/apps/94590/capsule_467x181.jpg" "capsule_616" "http://cdn2.steampowered.com/v/gfx/apps/94590/capsule_616x353.jpg" } "strings" { "short_desc" "Agent Nelson Tethers just solved the biggest case of his career. So why isn't he satisfied? There’s still the case of a missing eraser factory foreman, a whispering madness is still creeping from mind to mind, and a troubling recurrence of... creatures... is lurking into the town." "copyright" "© 2011 Telltale Inc. Telltale and the Telltale Games logo are trademarks of Telltale, Inc. Based on the Grickle series of books written and illustrated by Graham Annable. All rights reserved." "about" "Agent Nelson Tethers just solved the biggest case of his career. So why isn't he satisfied? There’s still the case of a missing eraser factory foreman, a whispering madness is still creeping from mind to mind, and a troubling recurrence of... creatures... is lurking into the town.
" "key_features" "
This method provides screenshots and trailers associated officially with a software title released on Steam.
Each software title includes a set of official screenshots and videos, showcased at the store page. These media items are provided by the developer/publisher of the title.
ISteamApps::GetAppData
's images return.
GET https://api.steampowered.com/ISteamApps/GetAppMedia/v0001/?appid=94590
{ "response": { "success": 1, "message": "success", "language": "en", "appid": 94590, "title": "Puzzle Agent 2", "images": { "header": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/header.jpg", "header_292": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/header_292x136.jpg", "capsule_120": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/capsule_sm_120.jpg", "capsule_184": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/capsule_184x69.jpg", "capsule_467": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/capsule_467x181.jpg", "capsule_616": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/capsule_616x353.jpg" }, "screenshots": [ { "thumbnail": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_0a45bd057043efa9773a5c970da937675c3694b0.116x65.jpg", "image_600": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_0a45bd057043efa9773a5c970da937675c3694b0.600x338.jpg", "image_1920": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.1920x1080.jpg", "image_org": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.jpg" }, { "thumbnail": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_4ccce3488e935e2e0b5030a2145e0408008b3d4c.jpg.116x65.jpg", "image_600": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_4ccce3488e935e2e0b5030a2145e0408008b3d4c.600x338.jpg", "image_1920": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_4ccce3488e935e2e0b5030a2145e0408008b3d4c.1920x1080.jpg", "image_org": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.jpg" }, { "thumbnail": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_3155b555f9a9e3cc7bbf96c0775a1e598fc50502.116x65.jpg", "image_600": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_3155b555f9a9e3cc7bbf96c0775a1e598fc50502.600x338.jpg", "image_1920": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_3155b555f9a9e3cc7bbf96c0775a1e598fc50502.1920x1080.jpg", "image_org": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_3155b555f9a9e3cc7bbf96c0775a1e598fc50502.jpg" }, { "thumbnail": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_64acddbf2f13b415206e53c61590b218c7bac9a4.116x65.jpg", "image_600": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_64acddbf2f13b415206e53c61590b218c7bac9a4.600x338.jpg", "image_1920": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_64acddbf2f13b415206e53c61590b218c7bac9a4.1920x1080.jpg", "image_org": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_64acddbf2f13b415206e53c61590b218c7bac9a4.jpg" }, { "thumbnail": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.116x65.jpg", "image_600": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.600x338.jpg", "image_1920": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.1920x1080.jpg", "image_org": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.jpg" }, { "thumbnail": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_82c412b711279408645b9214f78772186b951e90.116x65.jpg", "image_600": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_82c412b711279408645b9214f78772186b951e90.600x338.jpg", "image_1920": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_82c412b711279408645b9214f78772186b951e90.1920x1080.jpg", "image_org": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_82c412b711279408645b9214f78772186b951e90.jpg" }, { "thumbnail": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_8aab49ed2968de69f22cfc71a723c7c997241d3a.116x65.jpg", "image_600": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_8aab49ed2968de69f22cfc71a723c7c997241d3a.600x338.jpg", "image_1920": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_8aab49ed2968de69f22cfc71a723c7c997241d3a.1920x1080.jpg", "image_org": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_8aab49ed2968de69f22cfc71a723c7c997241d3a.jpg" }, { "thumbnail": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_c2028c4bce02c05a5fbd74534ccddb4e8828486f.116x65.jpg", "image_600": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_c2028c4bce02c05a5fbd74534ccddb4e8828486f.600x338.jpg", "image_1920": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_c2028c4bce02c05a5fbd74534ccddb4e8828486f.1920x1080.jpg", "image_org": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_c2028c4bce02c05a5fbd74534ccddb4e8828486f.jpg" }, { "thumbnail": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_cafc77a9c29056ff66dbc6571a14dcf0f7b57599.116x65.jpg", "image_600": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_cafc77a9c29056ff66dbc6571a14dcf0f7b57599.600x338.jpg", "image_1920": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_cafc77a9c29056ff66dbc6571a14dcf0f7b57599.1920x1080.jpg", "image_org": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/ss_cafc77a9c29056ff66dbc6571a14dcf0f7b57599.jpg" }, { "thumbnail": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/.116x65.jpg", "image_600": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/.600x338.jpg", "image_1920": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/.1920x1080.jpg", "image_org": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/.jpg" }, { "thumbnail": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/.116x65.jpg", "image_600": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/.600x338.jpg", "image_1920": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/.1920x1080.jpg", "image_org": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/.jpg" }, { "thumbnail": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/.116x65.jpg", "image_600": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/.600x338.jpg", "image_1920": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/.1920x1080.jpg", "image_org": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/.jpg" }, { "thumbnail": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/.116x65.jpg", "image_600": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/.600x338.jpg", "image_1920": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/.1920x1080.jpg", "image_org": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/94590\/.jpg" } ], "movies": [ { "movie_id": 80928, "thumbnail": "http:\/\/cdn2.steampowered.com\/v\/gfx\/apps\/80928\/movie.jpg", "movie": "http:\/\/media2.steampowered.com\/steam\/apps\/80928\/movieLrg.flv" } ] } }
<?xml version="1.0"?> <!DOCTYPE response> <response> <success>1</success> <message>success</message> <language>en</language> <appid>94590</appid> <title>Puzzle Agent 2</title> <images> <header>http://cdn2.steampowered.com/v/gfx/apps/94590/header.jpg</header> <header_292>http://cdn2.steampowered.com/v/gfx/apps/94590/header_292x136.jpg</header_292> <capsule_120>http://cdn2.steampowered.com/v/gfx/apps/94590/capsule_sm_120.jpg</capsule_120> <capsule_184>http://cdn2.steampowered.com/v/gfx/apps/94590/capsule_184x69.jpg</capsule_184> <capsule_467>http://cdn2.steampowered.com/v/gfx/apps/94590/capsule_467x181.jpg</capsule_467> <capsule_616>http://cdn2.steampowered.com/v/gfx/apps/94590/capsule_616x353.jpg</capsule_616> </images> <screenshots> <screenshot> <thumbnail>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_0a45bd057043efa9773a5c970da937675c3694b0.116x65.jpg</thumbnail> <image_600>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_0a45bd057043efa9773a5c970da937675c3694b0.600x338.jpg</image_600> <image_1920>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.1920x1080.jpg</image_1920> <image_org>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.jpg</image_org> </screenshot> <screenshot> <thumbnail>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_4ccce3488e935e2e0b5030a2145e0408008b3d4c.jpg.116x65.jpg</thumbnail> <image_600>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_4ccce3488e935e2e0b5030a2145e0408008b3d4c.600x338.jpg</image_600> <image_1920>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_4ccce3488e935e2e0b5030a2145e0408008b3d4c.1920x1080.jpg</image_1920> <image_org>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.jpg</image_org> </screenshot> <screenshot> <thumbnail>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_3155b555f9a9e3cc7bbf96c0775a1e598fc50502.116x65.jpg</thumbnail> <image_600>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_3155b555f9a9e3cc7bbf96c0775a1e598fc50502.600x338.jpg</image_600> <image_1920>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_3155b555f9a9e3cc7bbf96c0775a1e598fc50502.1920x1080.jpg</image_1920> <image_org>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_3155b555f9a9e3cc7bbf96c0775a1e598fc50502.jpg</image_org> </screenshot> <screenshot> <thumbnail>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_64acddbf2f13b415206e53c61590b218c7bac9a4.116x65.jpg</thumbnail> <image_600>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_64acddbf2f13b415206e53c61590b218c7bac9a4.600x338.jpg</image_600> <image_1920>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_64acddbf2f13b415206e53c61590b218c7bac9a4.1920x1080.jpg</image_1920> <image_org>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_64acddbf2f13b415206e53c61590b218c7bac9a4.jpg</image_org> </screenshot> <screenshot> <thumbnail>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.116x65.jpg</thumbnail> <image_600>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.600x338.jpg</image_600> <image_1920>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.1920x1080.jpg</image_1920> <image_org>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.jpg</image_org> </screenshot> <screenshot> <thumbnail>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_82c412b711279408645b9214f78772186b951e90.116x65.jpg</thumbnail> <image_600>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_82c412b711279408645b9214f78772186b951e90.600x338.jpg</image_600> <image_1920>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_82c412b711279408645b9214f78772186b951e90.1920x1080.jpg</image_1920> <image_org>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_82c412b711279408645b9214f78772186b951e90.jpg</image_org> </screenshot> <screenshot> <thumbnail>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_8aab49ed2968de69f22cfc71a723c7c997241d3a.116x65.jpg</thumbnail> <image_600>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_8aab49ed2968de69f22cfc71a723c7c997241d3a.600x338.jpg</image_600> <image_1920>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_8aab49ed2968de69f22cfc71a723c7c997241d3a.1920x1080.jpg</image_1920> <image_org>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_8aab49ed2968de69f22cfc71a723c7c997241d3a.jpg</image_org> </screenshot> <screenshot> <thumbnail>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_c2028c4bce02c05a5fbd74534ccddb4e8828486f.116x65.jpg</thumbnail> <image_600>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_c2028c4bce02c05a5fbd74534ccddb4e8828486f.600x338.jpg</image_600> <image_1920>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_c2028c4bce02c05a5fbd74534ccddb4e8828486f.1920x1080.jpg</image_1920> <image_org>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_c2028c4bce02c05a5fbd74534ccddb4e8828486f.jpg</image_org> </screenshot> <screenshot> <thumbnail>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_cafc77a9c29056ff66dbc6571a14dcf0f7b57599.116x65.jpg</thumbnail> <image_600>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_cafc77a9c29056ff66dbc6571a14dcf0f7b57599.600x338.jpg</image_600> <image_1920>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_cafc77a9c29056ff66dbc6571a14dcf0f7b57599.1920x1080.jpg</image_1920> <image_org>http://cdn2.steampowered.com/v/gfx/apps/94590/ss_cafc77a9c29056ff66dbc6571a14dcf0f7b57599.jpg</image_org> </screenshot> <screenshot> <thumbnail>http://cdn2.steampowered.com/v/gfx/apps/94590/.116x65.jpg</thumbnail> <image_600>http://cdn2.steampowered.com/v/gfx/apps/94590/.600x338.jpg</image_600> <image_1920>http://cdn2.steampowered.com/v/gfx/apps/94590/.1920x1080.jpg</image_1920> <image_org>http://cdn2.steampowered.com/v/gfx/apps/94590/.jpg</image_org> </screenshot> <screenshot> <thumbnail>http://cdn2.steampowered.com/v/gfx/apps/94590/.116x65.jpg</thumbnail> <image_600>http://cdn2.steampowered.com/v/gfx/apps/94590/.600x338.jpg</image_600> <image_1920>http://cdn2.steampowered.com/v/gfx/apps/94590/.1920x1080.jpg</image_1920> <image_org>http://cdn2.steampowered.com/v/gfx/apps/94590/.jpg</image_org> </screenshot> <screenshot> <thumbnail>http://cdn2.steampowered.com/v/gfx/apps/94590/.116x65.jpg</thumbnail> <image_600>http://cdn2.steampowered.com/v/gfx/apps/94590/.600x338.jpg</image_600> <image_1920>http://cdn2.steampowered.com/v/gfx/apps/94590/.1920x1080.jpg</image_1920> <image_org>http://cdn2.steampowered.com/v/gfx/apps/94590/.jpg</image_org> </screenshot> <screenshot> <thumbnail>http://cdn2.steampowered.com/v/gfx/apps/94590/.116x65.jpg</thumbnail> <image_600>http://cdn2.steampowered.com/v/gfx/apps/94590/.600x338.jpg</image_600> <image_1920>http://cdn2.steampowered.com/v/gfx/apps/94590/.1920x1080.jpg</image_1920> <image_org>http://cdn2.steampowered.com/v/gfx/apps/94590/.jpg</image_org> </screenshot> </screenshots> <movies> <movie> <movie_id>80928</movie_id> <thumbnail>http://cdn2.steampowered.com/v/gfx/apps/80928/movie.jpg</thumbnail> <movie>http://media2.steampowered.com/steam/apps/80928/movieLrg.flv</movie> </movie> </movies> </response>
"response" { "success" "1" "message" "success" "language" "en" "appid" "94590" "title" "Puzzle Agent 2" "images" { "header" "http://cdn2.steampowered.com/v/gfx/apps/94590/header.jpg" "header_292" "http://cdn2.steampowered.com/v/gfx/apps/94590/header_292x136.jpg" "capsule_120" "http://cdn2.steampowered.com/v/gfx/apps/94590/capsule_sm_120.jpg" "capsule_184" "http://cdn2.steampowered.com/v/gfx/apps/94590/capsule_184x69.jpg" "capsule_467" "http://cdn2.steampowered.com/v/gfx/apps/94590/capsule_467x181.jpg" "capsule_616" "http://cdn2.steampowered.com/v/gfx/apps/94590/capsule_616x353.jpg" } "screenshots" { "0" { "thumbnail" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_0a45bd057043efa9773a5c970da937675c3694b0.116x65.jpg" "image_600" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_0a45bd057043efa9773a5c970da937675c3694b0.600x338.jpg" "image_1920" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.1920x1080.jpg" "image_org" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.jpg" } "1" { "thumbnail" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_4ccce3488e935e2e0b5030a2145e0408008b3d4c.jpg.116x65.jpg" "image_600" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_4ccce3488e935e2e0b5030a2145e0408008b3d4c.600x338.jpg" "image_1920" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_4ccce3488e935e2e0b5030a2145e0408008b3d4c.1920x1080.jpg" "image_org" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.jpg" } "2" { "thumbnail" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_3155b555f9a9e3cc7bbf96c0775a1e598fc50502.116x65.jpg" "image_600" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_3155b555f9a9e3cc7bbf96c0775a1e598fc50502.600x338.jpg" "image_1920" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_3155b555f9a9e3cc7bbf96c0775a1e598fc50502.1920x1080.jpg" "image_org" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_3155b555f9a9e3cc7bbf96c0775a1e598fc50502.jpg" } "3" { "thumbnail" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_64acddbf2f13b415206e53c61590b218c7bac9a4.116x65.jpg" "image_600" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_64acddbf2f13b415206e53c61590b218c7bac9a4.600x338.jpg" "image_1920" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_64acddbf2f13b415206e53c61590b218c7bac9a4.1920x1080.jpg" "image_org" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_64acddbf2f13b415206e53c61590b218c7bac9a4.jpg" } "4" { "thumbnail" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.116x65.jpg" "image_600" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.600x338.jpg" "image_1920" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.1920x1080.jpg" "image_org" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_7e8edb91fc51301f106047c6d32be5a00ca04e62.jpg" } "5" { "thumbnail" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_82c412b711279408645b9214f78772186b951e90.116x65.jpg" "image_600" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_82c412b711279408645b9214f78772186b951e90.600x338.jpg" "image_1920" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_82c412b711279408645b9214f78772186b951e90.1920x1080.jpg" "image_org" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_82c412b711279408645b9214f78772186b951e90.jpg" } "6" { "thumbnail" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_8aab49ed2968de69f22cfc71a723c7c997241d3a.116x65.jpg" "image_600" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_8aab49ed2968de69f22cfc71a723c7c997241d3a.600x338.jpg" "image_1920" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_8aab49ed2968de69f22cfc71a723c7c997241d3a.1920x1080.jpg" "image_org" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_8aab49ed2968de69f22cfc71a723c7c997241d3a.jpg" } "7" { "thumbnail" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_c2028c4bce02c05a5fbd74534ccddb4e8828486f.116x65.jpg" "image_600" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_c2028c4bce02c05a5fbd74534ccddb4e8828486f.600x338.jpg" "image_1920" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_c2028c4bce02c05a5fbd74534ccddb4e8828486f.1920x1080.jpg" "image_org" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_c2028c4bce02c05a5fbd74534ccddb4e8828486f.jpg" } "8" { "thumbnail" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_cafc77a9c29056ff66dbc6571a14dcf0f7b57599.116x65.jpg" "image_600" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_cafc77a9c29056ff66dbc6571a14dcf0f7b57599.600x338.jpg" "image_1920" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_cafc77a9c29056ff66dbc6571a14dcf0f7b57599.1920x1080.jpg" "image_org" "http://cdn2.steampowered.com/v/gfx/apps/94590/ss_cafc77a9c29056ff66dbc6571a14dcf0f7b57599.jpg" } "9" { "thumbnail" "http://cdn2.steampowered.com/v/gfx/apps/94590/.116x65.jpg" "image_600" "http://cdn2.steampowered.com/v/gfx/apps/94590/.600x338.jpg" "image_1920" "http://cdn2.steampowered.com/v/gfx/apps/94590/.1920x1080.jpg" "image_org" "http://cdn2.steampowered.com/v/gfx/apps/94590/.jpg" } "10" { "thumbnail" "http://cdn2.steampowered.com/v/gfx/apps/94590/.116x65.jpg" "image_600" "http://cdn2.steampowered.com/v/gfx/apps/94590/.600x338.jpg" "image_1920" "http://cdn2.steampowered.com/v/gfx/apps/94590/.1920x1080.jpg" "image_org" "http://cdn2.steampowered.com/v/gfx/apps/94590/.jpg" } "11" { "thumbnail" "http://cdn2.steampowered.com/v/gfx/apps/94590/.116x65.jpg" "image_600" "http://cdn2.steampowered.com/v/gfx/apps/94590/.600x338.jpg" "image_1920" "http://cdn2.steampowered.com/v/gfx/apps/94590/.1920x1080.jpg" "image_org" "http://cdn2.steampowered.com/v/gfx/apps/94590/.jpg" } "12" { "thumbnail" "http://cdn2.steampowered.com/v/gfx/apps/94590/.116x65.jpg" "image_600" "http://cdn2.steampowered.com/v/gfx/apps/94590/.600x338.jpg" "image_1920" "http://cdn2.steampowered.com/v/gfx/apps/94590/.1920x1080.jpg" "image_org" "http://cdn2.steampowered.com/v/gfx/apps/94590/.jpg" } } "movies" { "0" { "movie_id" "80928" "thumbnail" "http://cdn2.steampowered.com/v/gfx/apps/80928/movie.jpg" "movie" "http://media2.steampowered.com/steam/apps/80928/movieLrg.flv" } } }
This method provides content ratings information associated officially with a software title released on Steam.
A number of titles have a range of content ratings information associated with the title. This method returns the relevant ratings information to each title, if applicable. While the output fields are the same across all ratings boards, the values will change wildly between each board. API users will need to familarize themselves with each system they plan to use.
UNRATED
status.UNRATED
— Unrated (Default)RC
— Refused ClassificationRP
— Rating PendingX
— Restricted (X18+)R
— Restricted (R18+)MA
— Mature Accompanied (MA15+)M
— MaturePG
— Parental GuidanceG
— GeneralE
— ExemptUNRATED
— Unrated (Default)RP
— Rating PendingR
— Refused ClassificationR18
— Restricted 1818
— 18+15
— 15+12
— 12+PG
— Parental GuidanceU
— UniversalE
— ExemptUNRATED
— Unrated (Default)RP
— Rating ScheduledRC
— CERO Regulations-CompatibleZ
— Restricted to ages 18 and up.D
— Ages 17 and up.C
— Ages 15 and up.B
— Ages 12 and up.A
— All ages.E
— Educational/Database"Love"
"Sexual Content"
"Violence"
"Horror"
"Drinking"
"Gambling"
"Crime"
"Drugs"
"Language"
UNRATED
— Unrated (Default)RP
— Rating PendingR
— 限制級 "Restrict" (18+)15
— 輔15級 "Counsel 15+"12
— 輔12級 "Counsel 12+"P
— 保護級 "Protect" (6+)G
— 普遍級 "General" (All ages)UNRATED
— Unrated (Default)RP
— Rating Pending18
— PG-1816
— PG-1614
— PG-1412
— PG-1210
— PG-10L
— GAUNRATED
— Unrated (Default)RP
— Rating PendingAO
— Adults OnlyM
— MatureT
— TeenE10
— Everyone 10+E
— EveryoneEC
— Early Childhood"Alcohol Reference"
"Animated Blood"
"Blood"
"Blood and Gore"
"Cartoon Violence"
"Comic Mischief"
"Crude Humor"
"Drug Reference"
"Fantasy Violence"
"Intense Violence"
"Language"
"Lyrics"
"Mature Humor"
"Nudity"
"Partial Nudity"
"Real Gambling"
"Sexual Content"
"Sexual Themes"
"Sexual Violence"
"Simulated Gambling"
"Strong Language"
"Strong Lyrics"
"Strong Sexual Content"
"Suggestive Themes"
"Tobacco Reference"
"Use of Alcohol"
"Use of Drugs"
"Use of Tobacco"
"Violence"
"Violent References"
"Shares Info"
"Shares Location"
"Users Interact"
"Online Interactions"
"Music Downloads"
UNRATED
— Unrated (Default)RP
— Rating Pending18
— Not approved for young persons aged under 18.16
— Approved for children aged 16 and above.13
— Approved for children aged 13 and above.10
— Approved for children aged 10 and above.PG
— Parental Guidance.A
— Approved for all ages.UNRATED
— Unrated (Default)RP
— Rating Pending18
— 18+15
— 15+12
— 12+ALL
— All AgesSexuality
Violence
Fear, Horror, Threatening
Gambling
Alcohol, Tobacco, Drug
Language
Crime, anti-social, or Anti-Governmental Messages
UNRATED
— Unrated (Default)RP
— Rating Pending18
— Ages 18+16
— Ages 16+12
— Ages 12+7
— Ages 7+ (6+ in Portugal)3
— Ages 3+ (4+ in Portugal)"Bad Language"
"Discrimination"
"Drugs"
"Fear"
"Gambling"
"Sex"
"Violence"
"Online Gameplay"
UNRATED
— Unrated (Default)RP
— Rating Pending18
— Not approved for young persons aged under 18.16
— Approved for children aged 16 and above.12
— Approved for children aged 12 and above.6
— Approved for children aged 6 and above.0
— Approved for all ages.GET https://api.steampowered.com/ISteamApps/GetAppRatings/v0001/?appid=94590
{ "response": { "success": 1, "message": "success", "language": "en", "appid": 94590, "title": "Puzzle Agent 2", "ratings": { "cero": { "class": "UNRATED", "desc": [ ], "desc_string": null }, "esrb": { "class": "UNRATED", "desc": [ ], "desc_string": null }, "pegi": { "class": "UNRATED", "desc": [ ], "desc_string": null }, "acb": { "class": "UNRATED", "desc": [ ], "desc_string": null }, "usk": { "class": "UNRATED", "desc": [ ], "desc_string": null }, "fpb": { "class": "UNRATED", "desc": [ ], "desc_string": null }, "bbfc": { "class": "UNRATED", "desc": [ ], "desc_string": null }, "grb": { "class": "UNRATED", "desc": [ ], "desc_string": null }, "csrr": { "class": "UNRATED", "desc": [ ], "desc_string": null }, "dejus": { "class": "UNRATED", "desc": [ ], "desc_string": null } } } }
<?xml version="1.0"?> <!DOCTYPE response> <response> <success>1</success> <message>success</message> <language>en</language> <appid>94590</appid> <title>Puzzle Agent 2</title> <ratings> <rating name="cero"> <class>UNRATED</class> <desc/> <desc_string/> </rating> <rating name="esrb"> <class>UNRATED</class> <desc/> <desc_string/> </rating> <rating name="pegi"> <class>UNRATED</class> <desc/> <desc_string/> </rating> <rating name="acb"> <class>UNRATED</class> <desc/> <desc_string/> </rating> <rating name="usk"> <class>UNRATED</class> <desc/> <desc_string/> </rating> <rating name="fpb"> <class>UNRATED</class> <desc/> <desc_string/> </rating> <rating name="bbfc"> <class>UNRATED</class> <desc/> <desc_string/> </rating> <rating name="grb"> <class>UNRATED</class> <desc/> <desc_string/> </rating> <rating name="csrr"> <class>UNRATED</class> <desc/> <desc_string/> </rating> <rating name="dejus"> <class>UNRATED</class> <desc/> <desc_string/> </rating> </ratings> </response>
"response" { "success" "1" "message" "success" "language" "en" "appid" "94590" "title" "Puzzle Agent 2" "ratings" { "cero" { "class" "UNRATED" "desc" { } "desc_string" "" } "esrb" { "class" "UNRATED" "desc" { } "desc_string" "" } "pegi" { "class" "UNRATED" "desc" { } "desc_string" "" } "acb" { "class" "UNRATED" "desc" { } "desc_string" "" } "usk" { "class" "UNRATED" "desc" { } "desc_string" "" } "fpb" { "class" "UNRATED" "desc" { } "desc_string" "" } "bbfc" { "class" "UNRATED" "desc" { } "desc_string" "" } "grb" { "class" "UNRATED" "desc" { } "desc_string" "" } "csrr" { "class" "UNRATED" "desc" { } "desc_string" "" } "dejus" { "class" "UNRATED" "desc" { } "desc_string" "" } } }
GET https://api.steampowered.com/ISteamApps/GetAppRatings/v0001/?appid=3830
{ "response": { "success": 1, "message": "success", "language": "en", "appid": 3830, "title": "Psychonauts", "ratings": { "acb": { "class": "M", "desc": [ ], "desc_string": null }, "bbfc": { "class": "UNRATED", "desc": [ ], "desc_string": null }, "cero": { "class": "UNRATED", "desc": [ ], "desc_string": null }, "csrr": { "class": "UNRATED", "desc": [ ], "desc_string": null }, "dejus": { "class": "UNRATED", "desc": [ ], "desc_string": null }, "esrb": { "class": "T", "desc": [ "Cartoon Violence", "Crude Humor", "Language" ], "desc_string": "Cartoon Violence, Crude Humor, Language" }, "fpb": { "class": "UNRATED", "desc": [ ], "desc_string": null }, "grb": { "class": "UNRATED", "desc": [ ], "desc_string": null }, "pegi": { "class": "12", "desc": [ "Bad Language", "Violence" ], "desc_string": "Bad Language, Violence" }, "usk": { "class": "12", "desc": [ ], "desc_string": null } } } }
<?xml version="1.0"?> <!DOCTYPE response> <response> <success>1</success> <message>success</message> <language>en</language> <appid>3830</appid> <title>Psychonauts</title> <ratings> <rating name="acb"> <class>M</class> <desc/> <desc_string/> </rating> <rating name="bbfc"> <class>UNRATED</class> <desc/> <desc_string/> </rating> <rating name="cero"> <class>UNRATED</class> <desc/> <desc_string/> </rating> <rating name="csrr"> <class>UNRATED</class> <desc/> <desc_string/> </rating> <rating name="dejus"> <class>UNRATED</class> <desc/> <desc_string/> </rating> <rating name="esrb"> <class>T</class> <desc> <desc_item>Cartoon Violence</desc_item> <desc_item>Crude Humor</desc_item> <desc_item>Language</desc_item> </desc> <desc_string>Cartoon Violence, Crude Humor, Language</desc_string> </rating> <rating name="fpb"> <class>UNRATED</class> <desc/> <desc_string/> </rating> <rating name="grb"> <class>UNRATED</class> <desc/> <desc_string/> </rating> <rating name="pegi"> <class>12</class> <desc> <desc_item>Bad Language</desc_item> <desc_item>Violence</desc_item> </desc> <desc_string>Bad Language, Violence</desc_string> </rating> <rating name="usk"> <class>12</class> <desc/> <desc_string/> </rating> </ratings> </response>
"response" { "success" "1" "message" "success" "language" "en" "appid" "3830" "title" "Psychonauts" "ratings" { "acb" { "class" "M" "desc" { } "desc_string" "" } "bbfc" { "class" "UNRATED" "desc" { } "desc_string" "" } "cero" { "class" "UNRATED" "desc" { } "desc_string" "" } "csrr" { "class" "UNRATED" "desc" { } "desc_string" "" } "dejus" { "class" "UNRATED" "desc" { } "desc_string" "" } "esrb" { "class" "T" "desc" { "0" "Cartoon Violence" "1" "Crude Humor" "2" "Language" } "desc_string" "Cartoon Violence, Crude Humor, Language" } "fpb" { "class" "UNRATED" "desc" { } "desc_string" "" } "grb" { "class" "UNRATED" "desc" { } "desc_string" "" } "pegi" { "class" "12" "desc" { "0" "Bad Language" "1" "Violence" } "desc_string" "Bad Language, Violence" } "usk" { "class" "12" "desc" { } "desc_string" "" } } }