itemdb API Guide
  1. Lists
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. Lists

Get List Item Info

GET
https://itemdb.com.br/api/v1/lists/{username}/{list_id_or_slug}/items
Returns the ListItemInfo

Request

Path Params
username
string 
required
Owner's Username
Example:
official
list_id_or_slug
string 
required
List ID or List Slug. Slugs are unique per user (ie: diferent users can have the same list slug)
Example:
weekly-quest-prize

Responses

🟢200Success
application/json
Body
array of:
internal_id
integer 
optional
list_id
integer 
optional
item_iid
integer 
optional
addedAt
string 
optional
updatedAt
string 
optional
amount
integer 
optional
capValue
number  | null 
optional
User defined capValue
imported
boolean 
optional
order
integer  | null 
optional
isHighlight
boolean 
optional
isHidden
boolean 
optional
seriesStart
string  | null 
optional
seriesEnd
string  | null 
optional
Example
[
    {
        "internal_id": 0,
        "list_id": 0,
        "item_iid": 0,
        "addedAt": "string",
        "updatedAt": "string",
        "amount": 0,
        "capValue": 0,
        "imported": true,
        "order": 0,
        "isHighlight": true,
        "isHidden": true,
        "seriesStart": "string",
        "seriesEnd": "string"
    }
]
Modified at 2025-03-02 21:36:30
Previous
Get List Info
Next
Get List Item Data
Built with