itemdb API Guide
  1. Item
itemdb API Guide
  • Getting Started
  • Slugs
  • Widget
  • Widget Tabs Exemple
  • Item
    • Get latest items
      GET
    • Get an item
      GET
    • Get item's price history
      GET
    • Get item's auction history
      GET
    • Get item's restock history
      GET
    • Get item's trade history
      GET
    • Get items color palette
      GET
    • Get item's color palette
      POST
    • Get many items
      GET
    • Get many items
      POST
    • Get Item Drops Data
      GET
    • Get Dyeworks Variants
      GET
    • Get MME Paths
      GET
    • Get Item Effects
      GET
    • Get Cooking Pot Recipes
      GET
  • Search
    • Search for an item
      GET
  • Lists
    • Get List Info
      GET
    • Get List Item Info
      GET
    • Get List Item Data
      GET
  • Misc
    • Get all ways to change a Pet Color/Species
      GET
    • Get wearable preview
      GET
    • Get cached item's thumbnail
      GET
  1. Item

Get item's trade history

GET
https://itemdb.com.br/api/v1/items/{name}/trades
Get the trade history for an item

Request

Path Params
name
string 
required
item name
Example:
negg

Responses

🟢200OK
application/json
Returns TradeData[]
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
Previous
Get item's restock history
Next
Get items color palette
Built with