Skip to content
Luka Tarman edited this page Apr 12, 2024 · 8 revisions

GET /api/appdetails

Rate limits

This API is now rate limited to 200 requests per 5 minutes, and multiple appids no longer work in a single request without filters.

If you request information about more than 1 appid, you'll need to set filters parameter to value "price_overview," otherwise the server will respond with a null and the status code 400 Bad Request. If you use multiple appids and try to use multiple filters or any other filter, the server will respond with null.

More details here. Credits to @xPaw and @RJackson.

Request

Authenticated: No

Method: GET

Host: store.steampowered.com

Path: /api/appdetails

Query Parameters:

Name Type Required Description
appids string Yes CSV of Steam AppIDs to return details of (max 100).
client TODO No TODO
filters string No CSV list of keys to return, e.g. name,platforms,price_overview.
The filter basic returns the following keys:
  • type
  • name
  • steam_appid
  • required_age
  • dlc
  • detailed_description
  • about_the_game
  • short_description
  • supported_languages
  • header_image
  • website
  • pc_requirements
  • mac_requirements
  • linux_requirements
Any key names except those listed under basic are acceptable as filter values.
cc string No Country code
l/language string No Language

Response

200 OK

Name Type Description
:appid object TODO
:appid.success boolean TODO
:appid.data object TODO
:appid.data.type string Observed values: "game", "dlc", "demo", "advertising", "mod", "video".
:appid.data.name string TODO
:appid.data.steam_appid number TODO
:appid.data.required_age number TODO
:appid.data.controller_support string Whether the app has controller support. Known values: "partial", "full". May be omitted.
:appid.data.is_free boolean TODO
:appid.data.dlc[] array Array of Steam AppIDs. May be omitted.
:appid.data.detailed_description string A detailed description of the app, in HTML.
:appid.data.about_the_game string About the game, in HTML.
:appid.data.short_description string A short description of the app, in HTML.
:appid.data.fullgame[] array E.g. shown for movies or demos. May be omitted.
:appid.data.fullgame[].appid number | object The Steam AppIDs. May be null.
:appid.data.fullgame[].name string The app name. May be "Uninitialized".
:appid.data.supported_languages string Supported languages, in HTML.
:appid.data.header_image string URL to the app header image.
:appid.data.website string TODO
:appid.data.pc_requirements object TODO
:appid.data.pc_requirements.minimum string The minimum PC requirements, in HTML.
:appid.data.pc_requirements.recommended string The recommended PC requirements, in HTML. May be omitted.
:appid.data.mac_requirements object TODO
:appid.data.mac_requirements.minimum string The minimum Mac requirements, in HTML.
:appid.data.mac_requirements.recommended string The recommended Mac requirements, in HTML. May be omitted.
:appid.data.linux_requirements object TODO
:appid.data.linux_requirements.minimum string The minimum Linux requirements, in HTML.
:appid.data.linux_requirements.recommended string The recommended Linux requirements, in HTML. May be omitted.
:appid.data.legal_notice TODO TODO
:appid.data.developers[] array TODO
:appid.data.publishers[] array TODO
:appid.data.demos[] array Whether there are demos available for this app. May be omitted.
:appid.data.demos[].appid number The Steam AppIDs of the demo.
:appid.data.demos[].description number To note the demo's restrictions.
:appid.data.price_overview object The price information. May be omitted, if free-to-play.
:appid.data.price_overview.currency string Currency prices are denoted in.
:appid.data.price_overview.initial number Pre-discount price.
:appid.data.price_overview.final number Post-discount price.
:appid.data.price_overview.discount_percent number Discount percentage.
:appid.data.price_overview.initial_formatted string TODO
:appid.data.price_overview.final_formatted string TODO
:appid.data.packages[] array Array of Steam Package IDs.
:appid.data.package_groups[] array Array of purchase options.
:appid.data.package_groups[].name string Observed values: "default", "subscriptions".
:appid.data.package_groups[].title string TODO
:appid.data.package_groups[].description string TODO
:appid.data.package_groups[].selection_text string If display_type is 1, this describes what the subs represent.
:appid.data.package_groups[].save_text string Marketing text about the massive savings you'll get!
:appid.data.package_groups[].display_type number Numeric value noting how it should be displayed on store pages.
  • 0 - list subs as seperate purchase blocks.
  • 1 - list subs in a dropdown box, contained within a single purchase block for the package group.
:appid.data.package_groups[].is_recurring_subscription string TODO
:appid.data.package_groups[].subs[] array Array of subscriptions in this package group.
:appid.data.package_groups[].subs[].packageid number TODO
:appid.data.package_groups[].subs[].percent_savings_text string TODO
:appid.data.package_groups[].subs[].percent_savings number TODO
:appid.data.package_groups[].subs[].option_text string TODO
:appid.data.package_groups[].subs[].option_description string TODO
:appid.data.package_groups[].subs[].can_get_free_license string TODO
:appid.data.package_groups[].subs[].is_free_license boolean TODO
:appid.data.package_groups[].subs[].price_in_cents_with_discount number TODO
:appid.data.platforms object TODO
:appid.data.platforms.windows boolean TODO
:appid.data.platforms.mac boolean TODO
:appid.data.platforms.linux boolean TODO
:appid.data.metacritic object `Metacritic information. May be omitted.
:appid.data.metacritic.score number TODO
:appid.data.metacritic.url string TODO
:appid.data.categories[] array The app categories. May be omitted.
:appid.data.categories[].id number TODO
:appid.data.categories[].description string TODO
:appid.data.genres[] array The app genres. May be omitted.
:appid.data.genres[].id string TODO
:appid.data.genres[].description string TODO
:appid.data.screenshots[] array The app screenshots. May be omitted.
:appid.data.screenshots[].id number TODO
:appid.data.screenshots[].path_thumbnail string URL to thumbnail image.
:appid.data.screenshots[].path_full string URL to full image.
:appid.data.movies[] array The app videos. May be omitted.
:appid.data.movies[].id number TODO
:appid.data.movies[].name string TODO
:appid.data.movies[].thumbnail string TODO
:appid.data.movies[].webm object TODO
:appid.data.movies[].webm.480 string URL of 480p video, in webm format.
:appid.data.movies[].webm.max string URL of max-quality video, in webm format.
:appid.data.movies[].mp4 object TODO
:appid.data.movies[].mp4.480 string URL of 480p video, in mp4 format.
:appid.data.movies[].mp4.max string URL of max-quality video, in mp4 format.
:appid.data.movies[].highlight boolean TODO
:appid.data.recommendations object The app reviews. May be omitted.
:appid.data.recommendations.total number TODO
:appid.data.achievements object The app achievements. May be omitted.
:appid.data.achievements.total number TODO
:appid.data.achievements.highlighted[] array TODO
:appid.data.achievements.highlighted[].name string TODO
:appid.data.achievements.highlighted[].path string URL to achievement icon.
:appid.data.release_date object TODO
:appid.data.release_date.coming_soon boolean true if unreleased, false if released.
:appid.data.release_date.date string Format is localized, according to the cc parameter passed. Is an empty string when date is unannounced.
:appid.data.support_info object TODO
:appid.data.support_info.url string TODO
:appid.data.support_info.email string TODO
:appid.data.background string TODO
:appid.data.content_descriptors object TODO
:appid.data.content_descriptors.ids[] array TODO
:appid.data.content_descriptors.notes string TODO

400 Bad Request

Name Type Description
null object Returns null on HTTP status 400 (e.g. when appids parameter is missing)

Example

GET https://store.steampowered.com/api/appdetails?appids=440
{
    "440": {
        "success": true,
        "data": {
            "type": "game",
            "name": "Team Fortress 2",
            "steam_appid": 440,
            "required_age": 0,
            "is_free": true,
            "dlc": [
                629330
            ],
            "detailed_description": "<p><strong>\"The most fun you can have online\"</strong> - PC Gamer<br>\r\n\t\t\t\t\t\t\t\t\t <strong>Is now FREE!</strong><br>\r\n\t\t\t\t\t\t\t\t\t There’s no catch! Play as much as you want, as long as you like!</p>\r\n\t\t\t\t\t\t\t\t\t <p><strong>The most highly-rated free game of all time!</strong><br>\r\n\t\t\t\t\t\t\t\t\t One of the most popular online action games of all time, Team Fortress 2 delivers constant free updates—new game modes, maps, equipment and, most importantly, hats. Nine distinct classes provide a broad range of tactical abilities and personalities, and lend themselves to a variety of player skills.</p>\r\n\t\t\t\t\t\t\t\t\t <p><strong>New to TF? Don’t sweat it!</strong><br>\r\n\t\t\t\t\t\t\t\t\t No matter what your style and experience, we’ve got a character for you. Detailed training and offline practice modes will help you hone your skills before jumping into one of TF2’s many game modes, including Capture the Flag, Control Point, Payload, Arena, King of the Hill and more.</p>\r\n\t\t\t\t\t\t\t\t\t <p><strong>Make a character your own!</strong><br>\r\n\t\t\t\t\t\t\t\t\t There are hundreds of weapons, hats and more to collect, craft, buy and trade. Tweak your favorite class to suit your gameplay style and personal taste. You don’t need to pay to win—virtually all of the items in the Mann Co. Store can also be found in-game.</p>\r\n\t\t\t\t\t\t\t\t\t<a href=\"http://www.teamfortress.com/freetoplay\"><img src=\"http://storefront.steampowered.com/v/gfx/apps/440/extras/page_banner_english1.jpg\"></a>\r\n\t\t\t\t\t\t\t\t\t",
            "about_the_game": "<p><strong>\"The most fun you can have online\"</strong> - PC Gamer<br>\r\n\t\t\t\t\t\t\t\t\t <strong>Is now FREE!</strong><br>\r\n\t\t\t\t\t\t\t\t\t There’s no catch! Play as much as you want, as long as you like!</p>\r\n\t\t\t\t\t\t\t\t\t <p><strong>The most highly-rated free game of all time!</strong><br>\r\n\t\t\t\t\t\t\t\t\t One of the most popular online action games of all time, Team Fortress 2 delivers constant free updates—new game modes, maps, equipment and, most importantly, hats. Nine distinct classes provide a broad range of tactical abilities and personalities, and lend themselves to a variety of player skills.</p>\r\n\t\t\t\t\t\t\t\t\t <p><strong>New to TF? Don’t sweat it!</strong><br>\r\n\t\t\t\t\t\t\t\t\t No matter what your style and experience, we’ve got a character for you. Detailed training and offline practice modes will help you hone your skills before jumping into one of TF2’s many game modes, including Capture the Flag, Control Point, Payload, Arena, King of the Hill and more.</p>\r\n\t\t\t\t\t\t\t\t\t <p><strong>Make a character your own!</strong><br>\r\n\t\t\t\t\t\t\t\t\t There are hundreds of weapons, hats and more to collect, craft, buy and trade. Tweak your favorite class to suit your gameplay style and personal taste. You don’t need to pay to win—virtually all of the items in the Mann Co. Store can also be found in-game.</p>\r\n\t\t\t\t\t\t\t\t\t<a href=\"http://www.teamfortress.com/freetoplay\"><img src=\"http://storefront.steampowered.com/v/gfx/apps/440/extras/page_banner_english1.jpg\"></a>\r\n\t\t\t\t\t\t\t\t\t",
            "short_description": "Nine distinct classes provide a broad range of tactical abilities and personalities. Constantly updated with new game modes, maps, equipment and, most importantly, hats!",
            "supported_languages": "English<strong>*</strong>, Danish, Dutch, Finnish, French, German, Italian, Japanese, Norwegian, Polish, Portuguese, Russian, Simplified Chinese, Spanish - Spain, Swedish, Traditional Chinese, Korean, Czech, Hungarian, Portuguese - Brazil, Turkish, Greek, Bulgarian, Romanian, Thai, Ukrainian<br><strong>*</strong>languages with full audio support",
            "header_image": "https://cdn.akamai.steamstatic.com/steam/apps/440/header.jpg?t=1592263852",
            "website": "http://www.teamfortress.com/",
            "pc_requirements": {
                "minimum": "<strong>Minimum:</strong><br><ul class=\"bb_ul\"><li><strong>OS:</strong> Windows® 7 (32/64-bit)/Vista/XP<br></li><li><strong>Processor:</strong> 1.7 GHz Processor or better<br></li><li><strong>Memory:</strong> 512 MB RAM<br></li><li><strong>DirectX:</strong> Version 8.1<br></li><li><strong>Network:</strong> Broadband Internet connection<br></li><li><strong>Storage:</strong> 15 GB available space</li></ul>",
                "recommended": "<strong>Recommended:</strong><br><ul class=\"bb_ul\"><li><strong>OS:</strong> Windows® 7 (32/64-bit)<br></li><li><strong>Processor:</strong> Pentium 4 processor (3.0GHz, or better)<br></li><li><strong>Memory:</strong> 1 GB RAM<br></li><li><strong>DirectX:</strong> Version 9.0c<br></li><li><strong>Network:</strong> Broadband Internet connection<br></li><li><strong>Storage:</strong> 15 GB available space</li></ul>"
            },
            "mac_requirements": {
                "minimum": "<strong>Minimum:</strong><br><ul class=\"bb_ul\"><li><strong>OS:</strong> OS X version Leopard 10.5.8 and above<br></li><li><strong>Processor:</strong> 1.7 GHz Processor or better<br></li><li><strong>Memory:</strong> 1 GB RAM<br></li><li><strong>Graphics:</strong> NVIDIA GeForce 8 or higher, ATI X1600 or higher, Intel HD 3000 or higher<br></li><li><strong>Network:</strong> Broadband Internet connection<br></li><li><strong>Storage:</strong> 15 GB available space</li></ul>"
            },
            "linux_requirements": {
                "minimum": "<strong>Minimum:</strong><br><ul class=\"bb_ul\"><li><strong>OS:</strong> Ubuntu 12.04<br></li><li><strong>Processor:</strong> Dual core from Intel or AMD at 2.8 GHz<br></li><li><strong>Memory:</strong> 1 GB RAM<br></li><li><strong>Graphics:</strong> nVidia GeForce 8600/9600GT, ATI/AMD Radeon HD2600/3600 (Graphic Drivers: nVidia 310, AMD 12.11), OpenGL 2.1<br></li><li><strong>Network:</strong> Broadband Internet connection<br></li><li><strong>Storage:</strong> 15 GB available space<br></li><li><strong>Sound Card:</strong> OpenAL Compatible Sound Card</li></ul>"
            },
            "developers": [
                "Valve"
            ],
            "publishers": [
                "Valve"
            ],
            "packages": [
                197845,
                330198,
                469
            ],
            "package_groups": [
                {
                    "name": "default",
                    "title": "Buy Team Fortress 2",
                    "description": "",
                    "selection_text": "Select a purchase option",
                    "save_text": "",
                    "display_type": 0,
                    "is_recurring_subscription": "false",
                    "subs": [
                        {
                            "packageid": 197845,
                            "percent_savings_text": " ",
                            "percent_savings": 0,
                            "option_text": "Team Fortress 2 - Commercial License - Free",
                            "option_description": "",
                            "can_get_free_license": "0",
                            "is_free_license": true,
                            "price_in_cents_with_discount": 0
                        },
                        {
                            "packageid": 469,
                            "percent_savings_text": " ",
                            "percent_savings": 0,
                            "option_text": "The Orange Box - 16,79€",
                            "option_description": "",
                            "can_get_free_license": "0",
                            "is_free_license": false,
                            "price_in_cents_with_discount": 1679
                        }
                    ]
                }
            ],
            "platforms": {
                "windows": true,
                "mac": true,
                "linux": true
            },
            "metacritic": {
                "score": 92,
                "url": "https://www.metacritic.com/game/pc/team-fortress-2?ftag=MCD-06-10aaa1f"
            },
            "categories": [
                {
                    "id": 1,
                    "description": "Multi-player"
                },
                {
                    "id": 27,
                    "description": "Cross-Platform Multiplayer"
                },
                {
                    "id": 22,
                    "description": "Steam Achievements"
                },
                {
                    "id": 29,
                    "description": "Steam Trading Cards"
                },
                {
                    "id": 13,
                    "description": "Captions available"
                },
                {
                    "id": 30,
                    "description": "Steam Workshop"
                },
                {
                    "id": 35,
                    "description": "In-App Purchases"
                },
                {
                    "id": 18,
                    "description": "Partial Controller Support"
                },
                {
                    "id": 8,
                    "description": "Valve Anti-Cheat enabled"
                },
                {
                    "id": 15,
                    "description": "Stats"
                },
                {
                    "id": 17,
                    "description": "Includes level editor"
                },
                {
                    "id": 14,
                    "description": "Commentary available"
                },
                {
                    "id": 41,
                    "description": "Remote Play on Phone"
                },
                {
                    "id": 42,
                    "description": "Remote Play on Tablet"
                }
            ],
            "genres": [
                {
                    "id": "1",
                    "description": "Action"
                },
                {
                    "id": "37",
                    "description": "Free to Play"
                }
            ],
            "screenshots": [
                {
                    "id": 0,
                    "path_thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/440/ss_ea21f7bbf4f79bada4554df5108d04b6889d3453.600x338.jpg?t=1592263852",
                    "path_full": "https://cdn.akamai.steamstatic.com/steam/apps/440/ss_ea21f7bbf4f79bada4554df5108d04b6889d3453.1920x1080.jpg?t=1592263852"
                },
                {
                    "id": 1,
                    "path_thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/440/ss_e3aedb2ab36bba8cfe611b1e0eaa807e4bb2d742.600x338.jpg?t=1592263852",
                    "path_full": "https://cdn.akamai.steamstatic.com/steam/apps/440/ss_e3aedb2ab36bba8cfe611b1e0eaa807e4bb2d742.1920x1080.jpg?t=1592263852"
                },
                {
                    "id": 2,
                    "path_thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/440/ss_ee24a769dc1d81dcbd7b250d16530394adee4264.600x338.jpg?t=1592263852",
                    "path_full": "https://cdn.akamai.steamstatic.com/steam/apps/440/ss_ee24a769dc1d81dcbd7b250d16530394adee4264.1920x1080.jpg?t=1592263852"
                },
                {
                    "id": 3,
                    "path_thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/440/ss_9faaa506d91bf19dbb398e0c06a684b337f85f91.600x338.jpg?t=1592263852",
                    "path_full": "https://cdn.akamai.steamstatic.com/steam/apps/440/ss_9faaa506d91bf19dbb398e0c06a684b337f85f91.1920x1080.jpg?t=1592263852"
                },
                {
                    "id": 4,
                    "path_thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/440/ss_7de978f22a7059151c31d0488dc57c5c7703c48b.600x338.jpg?t=1592263852",
                    "path_full": "https://cdn.akamai.steamstatic.com/steam/apps/440/ss_7de978f22a7059151c31d0488dc57c5c7703c48b.1920x1080.jpg?t=1592263852"
                },
                {
                    "id": 5,
                    "path_thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/440/ss_e79f2490af3247b4b0f8d412d437b72c321cfe3b.600x338.jpg?t=1592263852",
                    "path_full": "https://cdn.akamai.steamstatic.com/steam/apps/440/ss_e79f2490af3247b4b0f8d412d437b72c321cfe3b.1920x1080.jpg?t=1592263852"
                },
                {
                    "id": 6,
                    "path_thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/440/ss_8f28c75172e3d08e65222725202b82f58bfe7df7.600x338.jpg?t=1592263852",
                    "path_full": "https://cdn.akamai.steamstatic.com/steam/apps/440/ss_8f28c75172e3d08e65222725202b82f58bfe7df7.1920x1080.jpg?t=1592263852"
                },
                {
                    "id": 7,
                    "path_thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/440/0000002574.600x338.jpg?t=1592263852",
                    "path_full": "https://cdn.akamai.steamstatic.com/steam/apps/440/0000002574.1920x1080.jpg?t=1592263852"
                },
                {
                    "id": 8,
                    "path_thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/440/0000002575.600x338.jpg?t=1592263852",
                    "path_full": "https://cdn.akamai.steamstatic.com/steam/apps/440/0000002575.1920x1080.jpg?t=1592263852"
                },
                {
                    "id": 9,
                    "path_thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/440/0000002576.600x338.jpg?t=1592263852",
                    "path_full": "https://cdn.akamai.steamstatic.com/steam/apps/440/0000002576.1920x1080.jpg?t=1592263852"
                },
                {
                    "id": 10,
                    "path_thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/440/0000002577.600x338.jpg?t=1592263852",
                    "path_full": "https://cdn.akamai.steamstatic.com/steam/apps/440/0000002577.1920x1080.jpg?t=1592263852"
                },
                {
                    "id": 11,
                    "path_thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/440/0000002578.600x338.jpg?t=1592263852",
                    "path_full": "https://cdn.akamai.steamstatic.com/steam/apps/440/0000002578.1920x1080.jpg?t=1592263852"
                },
                {
                    "id": 12,
                    "path_thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/440/0000002579.600x338.jpg?t=1592263852",
                    "path_full": "https://cdn.akamai.steamstatic.com/steam/apps/440/0000002579.1920x1080.jpg?t=1592263852"
                },
                {
                    "id": 13,
                    "path_thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/440/0000002580.600x338.jpg?t=1592263852",
                    "path_full": "https://cdn.akamai.steamstatic.com/steam/apps/440/0000002580.1920x1080.jpg?t=1592263852"
                },
                {
                    "id": 14,
                    "path_thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/440/0000002581.600x338.jpg?t=1592263852",
                    "path_full": "https://cdn.akamai.steamstatic.com/steam/apps/440/0000002581.1920x1080.jpg?t=1592263852"
                }
            ],
            "movies": [
                {
                    "id": 256698790,
                    "name": "Jungle Inferno",
                    "thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/256698790/movie.293x165.jpg?t=1519429751",
                    "webm": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/256698790/movie480.webm?t=1519429751",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/256698790/movie_max.webm?t=1519429751"
                    },
                    "mp4": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/256698790/movie480.mp4?t=1519429751",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/256698790/movie_max.mp4?t=1519429751"
                    },
                    "highlight": true
                },
                {
                    "id": 2030252,
                    "name": "Mann vs. Machine - The Sound of Medicine",
                    "thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/2030252/movie.293x165.jpg?t=1519429757",
                    "webm": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/2030252/movie480.webm?t=1519429757",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/2030252/movie_max.webm?t=1519429757"
                    },
                    "mp4": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/2030252/movie480.mp4?t=1519429757",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/2030252/movie_max.mp4?t=1519429757"
                    },
                    "highlight": false
                },
                {
                    "id": 81943,
                    "name": "Mann vs Machine_Trailer",
                    "thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/81943/movie.293x165.jpg?t=1519429767",
                    "webm": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/81943/movie480.webm?t=1519429767",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/81943/movie_max.webm?t=1519429767"
                    },
                    "mp4": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/81943/movie480.mp4?t=1519429767",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/81943/movie_max.mp4?t=1519429767"
                    },
                    "highlight": false
                },
                {
                    "id": 81800,
                    "name": "Meet the Pyro - TF2",
                    "thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/81800/movie.293x165.jpg?t=1519429778",
                    "webm": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/81800/movie480.webm?t=1519429778",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/81800/movie_max.webm?t=1519429778"
                    },
                    "mp4": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/81800/movie480.mp4?t=1519429778",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/81800/movie_max.mp4?t=1519429778"
                    },
                    "highlight": false
                },
                {
                    "id": 80923,
                    "name": "Team Fortress 2: Meet The Medic",
                    "thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/80923/movie.293x165.jpg?t=1519429787",
                    "webm": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/80923/movie480.webm?t=1519429787",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/80923/movie_max.webm?t=1519429787"
                    },
                    "mp4": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/80923/movie480.mp4?t=1519429787",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/80923/movie_max.mp4?t=1519429787"
                    },
                    "highlight": false
                },
                {
                    "id": 80924,
                    "name": "Team Fortress 2 Free to Play",
                    "thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/80924/movie.293x165.jpg?t=1519429797",
                    "webm": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/80924/movie480.webm?t=1519429797",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/80924/movie_max.webm?t=1519429797"
                    },
                    "mp4": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/80924/movie480.mp4?t=1519429797",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/80924/movie_max.mp4?t=1519429797"
                    },
                    "highlight": false
                },
                {
                    "id": 5734,
                    "name": "TF2 Mac Trailer",
                    "thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/5734/movie.293x165.jpg?t=1519429807",
                    "webm": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/5734/movie480.webm?t=1519429807",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/5734/movie_max.webm?t=1519429807"
                    },
                    "mp4": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/5734/movie480.mp4?t=1519429807",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/5734/movie_max.mp4?t=1519429807"
                    },
                    "highlight": false
                },
                {
                    "id": 931,
                    "name": "Team Fortress 2 Trailer 2",
                    "thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/931/movie.jpg?t=1519429823",
                    "webm": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/931/movie480.webm?t=1519429823",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/931/movie_max.webm?t=1519429823"
                    },
                    "mp4": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/931/movie480.mp4?t=1519429823",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/931/movie_max.mp4?t=1519429823"
                    },
                    "highlight": false
                },
                {
                    "id": 960,
                    "name": "Team Fortress 2: Meet the Heavy",
                    "thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/960/movie.jpg?t=1519429832",
                    "webm": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/960/movie480.webm?t=1519429832",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/960/movie_max.webm?t=1519429832"
                    },
                    "mp4": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/960/movie480.mp4?t=1519429832",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/960/movie_max.mp4?t=1519429832"
                    },
                    "highlight": false
                },
                {
                    "id": 985,
                    "name": "Team Fortress 2: Meet the Soldier (English)",
                    "thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/985/movie.jpg?t=1519429842",
                    "webm": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/985/movie480.webm?t=1519429842",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/985/movie_max.webm?t=1519429842"
                    },
                    "mp4": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/985/movie480.mp4?t=1519429842",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/985/movie_max.mp4?t=1519429842"
                    },
                    "highlight": false
                },
                {
                    "id": 987,
                    "name": "Team Fortress 2: Meet the Engineer",
                    "thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/987/movie.jpg?t=1519429853",
                    "webm": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/987/movie480.webm?t=1519429853",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/987/movie_max.webm?t=1519429853"
                    },
                    "mp4": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/987/movie480.mp4?t=1519429853",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/987/movie_max.mp4?t=1519429853"
                    },
                    "highlight": false
                },
                {
                    "id": 997,
                    "name": "Team Fortress 2: Meet the Demoman",
                    "thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/997/movie.jpg?t=1519429869",
                    "webm": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/997/movie480.webm?t=1519429869",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/997/movie_max.webm?t=1519429869"
                    },
                    "mp4": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/997/movie480.mp4?t=1519429869",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/997/movie_max.mp4?t=1519429869"
                    },
                    "highlight": false
                },
                {
                    "id": 5032,
                    "name": "Team Fortress 2: Meet the Scout (English)",
                    "thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/5032/movie.jpg?t=1519429900",
                    "webm": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/5032/movie480.webm?t=1519429900",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/5032/movie_max.webm?t=1519429900"
                    },
                    "mp4": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/5032/movie480.mp4?t=1519429900",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/5032/movie_max.mp4?t=1519429900"
                    },
                    "highlight": false
                },
                {
                    "id": 5051,
                    "name": "Team Fortress 2: Meet the Sniper",
                    "thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/5051/movie.293x165.jpg?t=1519429953",
                    "webm": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/5051/movie480.webm?t=1519429953",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/5051/movie_max.webm?t=1519429953"
                    },
                    "mp4": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/5051/movie480.mp4?t=1519429953",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/5051/movie_max.mp4?t=1519429953"
                    },
                    "highlight": false
                },
                {
                    "id": 5073,
                    "name": "Team Fortress 2: Meet the Sandvich",
                    "thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/5073/movie.jpg?t=1519430028",
                    "webm": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/5073/movie480.webm?t=1519430028",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/5073/movie_max.webm?t=1519430028"
                    },
                    "mp4": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/5073/movie480.mp4?t=1519430028",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/5073/movie_max.mp4?t=1519430028"
                    },
                    "highlight": false
                },
                {
                    "id": 5260,
                    "name": "Team Fortress 2: Meet the Spy",
                    "thumbnail": "https://cdn.akamai.steamstatic.com/steam/apps/5260/movie.293x165.jpg?t=1519430068",
                    "webm": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/5260/movie480.webm?t=1519430068",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/5260/movie_max.webm?t=1519430068"
                    },
                    "mp4": {
                        "480": "http://cdn.akamai.steamstatic.com/steam/apps/5260/movie480.mp4?t=1519430068",
                        "max": "http://cdn.akamai.steamstatic.com/steam/apps/5260/movie_max.mp4?t=1519430068"
                    },
                    "highlight": false
                }
            ],
            "recommendations": {
                "total": 12297
            },
            "achievements": {
                "total": 520,
                "highlighted": [
                    {
                        "name": "Head of the Class",
                        "path": "https://cdn.akamai.steamstatic.com/steamcommunity/public/images/apps/440/tf_play_game_everyclass.jpg"
                    },
                    {
                        "name": "World Traveler",
                        "path": "https://cdn.akamai.steamstatic.com/steamcommunity/public/images/apps/440/tf_play_game_everymap.jpg"
                    },
                    {
                        "name": "Team Doctor",
                        "path": "https://cdn.akamai.steamstatic.com/steamcommunity/public/images/apps/440/tf_get_healpoints.jpg"
                    },
                    {
                        "name": "Flamethrower",
                        "path": "https://cdn.akamai.steamstatic.com/steamcommunity/public/images/apps/440/tf_burn_playersinminimumtime.jpg"
                    },
                    {
                        "name": "Sentry Gunner",
                        "path": "https://cdn.akamai.steamstatic.com/steamcommunity/public/images/apps/440/tf_get_turretkills.jpg"
                    },
                    {
                        "name": "Nemesis",
                        "path": "https://cdn.akamai.steamstatic.com/steamcommunity/public/images/apps/440/tf_kill_nemesis.jpg"
                    },
                    {
                        "name": "Hard to Kill",
                        "path": "https://cdn.akamai.steamstatic.com/steamcommunity/public/images/apps/440/tf_get_consecutivekills_nodeaths.jpg"
                    },
                    {
                        "name": "Master of Disguise",
                        "path": "https://cdn.akamai.steamstatic.com/steamcommunity/public/images/apps/440/tf_get_healed_byenemy.jpg"
                    },
                    {
                        "name": "With Friends Like these...",
                        "path": "https://cdn.akamai.steamstatic.com/steamcommunity/public/images/apps/440/tf_play_game_friendsonly.jpg"
                    },
                    {
                        "name": "Dynasty",
                        "path": "https://cdn.akamai.steamstatic.com/steamcommunity/public/images/apps/440/tf_win_multiplegames.jpg"
                    }
                ]
            },
            "release_date": {
                "coming_soon": false,
                "date": "10 Oct, 2007"
            },
            "support_info": {
                "url": "http://steamcommunity.com/app/440",
                "email": ""
            },
            "background": "https://cdn.akamai.steamstatic.com/steam/apps/440/page_bg_generated_v6b.jpg?t=1592263852",
            "content_descriptors": {
                "ids": [
                    2,
                    5
                ],
                "notes": "Includes cartoon violence and gore."
            }
        }
    }
}
Clone this wiki locally