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 price history

GET
https://itemdb.com.br/api/v1/items/{id_or_name}/prices
Get the price history of an item

Request

Path Params
id_or_name
string 
required
item internal_id, name. Keep in mind that there are items with the same name, so using the internal_id is safer.
Example:
negg

Responses

🟢200OK
application/json
Returns ItemPriceData[]
Body
array of:
addedAt
string  | null 
optional
Date string in the ISO 8601 format
Example:
2023-03-23T18:52:57.056Z
value
number  | null 
optional
item market price in neopoints
inflated
boolean 
optional
whether this item price is currently inflated
Example
[
    {
        "value": 22450,
        "addedAt": "2023-03-23T06:32:55.181Z",
        "inflated": false
    },
    {
        "value": 23850,
        "addedAt": "2023-03-07T00:11:51.833Z",
        "inflated": false
    }
]
Modified at 2025-03-02 21:38:39
Previous
Get an item
Next
Get item's auction history
Built with