Steam Game Info
This endpoint retrieves detailed information about a specific game on Steam based on the game name.
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
Specifies the game name for retrieving Steam game info.
Response
Indicates whether the request was successful. A value of true
means the request was successful, while false
indicates an issue or failure.
Contains the data related to the game information, including the game ID, name, price information, genres, platforms, and more.
The unique identifier for the game on Steam.
The name of the game.
The URL link to the gameβs page on Steam.
The URL of the gameβs header image.
An array of genres the game belongs to.
An array of platforms the game is available on.
The Metacritic score of the game.
An array of developers of the game.
An array of publishers of the game.
An array of tags associated with the game.
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"
]
}
}