- Getting Started
- Slugs
- Widget
- Widget Tabs Exemple
- Item
- Get latest itemsGET
- Get a itemGET
- Get item's price historyGET
- Get item's auction historyGET
- Get item's restock historyGET
- Get item's trade historyGET
- Get items color paletteGET
- Get item's color palettePOST
- Get many itemsGET
- Get many itemsPOST
- Get Item Drops DataGET
- Get Dyeworks VariantsGET
- Get MME PathsGET
- Get Item EffectsGET
- Get Cooking Pot RecipesGET
- Search
- Lists
- Misc
Get item's trade history
GET
/items/{name}/trades
Request
Path Params
name
string
required
Example:
negg
Responses
🟢200OK
application/json
Body
array of:
recent
array [object {8}]
optional
trade_id
integer
optional
owner
string
optional
priced
boolean
optional
hash
string
optional
items
array [object {8}]
optional
wishlist
string
optional
processed
boolean
optional
addedAt
string
optional
priced
integer
optional
total
integer
optional
uniqueOwners
integer
optional
period
string
optional
Example
[
{
"recent": [
{
"trade_id": 0,
"owner": "string",
"priced": true,
"hash": "string",
"items": [
{
"internal_id": 0,
"trade_id": 0,
"name": "string",
"image": "string",
"image_id": "string",
"price": 0,
"order": 0,
"addedAt": "string"
}
],
"wishlist": "string",
"processed": true,
"addedAt": "string"
}
],
"priced": 0,
"total": 0,
"uniqueOwners": 0,
"period": "string"
}
]
Modified at 2025-03-02 21:39:17