S_product
Gets the information about a single product.
Supported arguments
The following arguments are supported by S_product query:
Field | Type | Description |
---|---|---|
productId | S_Uuid! | The ID of the product |
Return type
The query returns theS_API_Product
type.
Example usage
Query
Here we are asking detailed information about a single product.
"auctions" field in S_API_Product type is deprecated and returns null
.
Use dedicated S_competition
query to monitor competition prices
query {
S_product(productId: "c17fd750-6aa8-11eb-bc0f-4e1b39722069") {
name
slug
regions { code }
drm { slug }
type { value }
isSellable
}
}
Response
Product features are returned.
{
"data": {
"S_product": {
"name": "Resident Evil Village / Resident Evil 8 Steam Key GLOBAL",
"slug": "steam-resident-evil-village-resident-evil-8-steam-key-global-10",
"regions": [
{
"code": "global"
}
],
"drm": {
"slug": "steam"
},
"type": {
"value": "GAME"
},
"isSellable": true
}
}
}