- 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 Drops Data
GET
/items/{id_name_slug}/drops
Request
Path Params
id_name_slug
string
required
Example:
maraquan-y2k-mini-mystery-capsule
Responses
🟢200Success
application/json
Body
drops
object
optional
openings
integer
optional
pools
object
optional
notes
string | null
optional
drops
object
optional
hasLE
boolean
optional
isGBC
boolean
optional
minDrop
integer
optional
maxDrop
integer
optional
isChoice
boolean
optional
isGram
boolean
optional
parents
array[integer]
optional
Example
{
"drops": {
"openings": 174,
"pools": {
"unknown": {
"name": "unknown",
"items": [
67171,
67172,
67173,
67174,
67176
],
"isChance": true,
"openings": 151,
"maxDrop": 1,
"minDrop": 1,
"totalDrops": 151,
"isLE": false
},
"le": {
"name": "le",
"items": [
67175
],
"isChance": true,
"openings": 23,
"maxDrop": 1,
"minDrop": 1,
"totalDrops": 23,
"isLE": true
}
},
"notes": null,
"drops": {
"67171": {
"item_iid": 67171,
"dropRate": 23.841059602649008,
"notes": null,
"isLE": false,
"pool": "unknown"
},
"67172": {
"item_iid": 67172,
"dropRate": 19.867549668874172,
"notes": null,
"isLE": false,
"pool": "unknown"
},
"67173": {
"item_iid": 67173,
"dropRate": 15.2317880794702,
"notes": null,
"isLE": false,
"pool": "unknown"
},
"67174": {
"item_iid": 67174,
"dropRate": 15.2317880794702,
"notes": null,
"isLE": false,
"pool": "unknown"
},
"67175": {
"item_iid": 67175,
"dropRate": 100,
"notes": "LE",
"isLE": true,
"pool": "le"
},
"67176": {
"item_iid": 67176,
"dropRate": 25.82781456953642,
"notes": null,
"isLE": false,
"pool": "unknown"
}
},
"hasLE": true,
"isGBC": false,
"minDrop": 1,
"maxDrop": 1,
"isChoice": false,
"isGram": false
},
"parents": [
67180,
67181
]
}
Modified at 2025-03-02 21:43:17