GET
/
v1
/
steam
curl --request GET \
  --url https://api.mzrdev.xyz/v1/steam \
  --header 'Authorization: <api-key>'
{

    "success": true,

    "data": {

        "id": "227300",

        "name": "Euro Truck Simulator 2",

        "priceInfo": {

            "initialPrice": "$19.99",

            "currentPrice": "$19.99",

            "discountPercent": 0

        },

        "gameLink": "https://store.steampowered.com/app/227300",

        "imageUrl": "https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/227300/header.jpg?t=1721293261",

        "genres": [

            "Indie",

            "Simulation"

        ],

        "platforms": [

            "Windows",

            "MacOS",

            "Linux"

        ],

        "metacriticScore": 79,

        "developer": [

            "SCS Software"

        ],

        "publisher": [

            "SCS Software"

        ],

        "tags": [

            "Single-player",

            "Multi-player",

            "Co-op",

            "Online Co-op",

            "Steam Achievements",

            "Steam Trading Cards",

            "Steam Workshop",

            "Partial Controller Support",

            "Steam Cloud",

            "Includes level editor",

            "Remote Play on Phone",

            "Remote Play on Tablet",

            "Remote Play Together",

            "Family Sharing"

        ]

    }

}

Query Parameters

game
string
required

Specifies the game name for retrieving Steam game info.

Response

success
boolean

Indicates whether the request was successful. A value of true means the request was successful, while false indicates an issue or failure.

data
object

Contains the data related to the game information, including the game ID, name, price information, genres, platforms, and more.

Response