I want to receive data about all auctions for following item:
Shadowghast Breastplate, the id of this item is 171412.
But this item can be for example 225 or 235 or 249 (or any other) item level.
In the response from auction API I usually see something like this:
...
{
"id": 17182428,
"item": {
"id": 171412,
"context": 66,
"bonus_lists": [6758, 1532],
"modifiers": [{
"type": 28,
"value": 2142
}
]
},
"buyout": 200004300,
"quantity": 1,
"time_left": "VERY_LONG"
}
...
The question is: where do I find item level in this response? I see quantity, buyout and other properties that I understand how to use. But I don’t get where is the item level.
Thank you in advance!