- 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 Effects
GET
/items/{id_name_slug}/effects
Request
Path Params
id_name_slug
string
required
Example:
cool-negg
Responses
🟢200Success
application/json
Body
array of:
internal_id
integer
optional
type
enum<string>
optional
Allowed values:
diseasecureDiseasehealstatscolorSpeciesother
name
string
optional
species
array[string] | null
optional
isChance
boolean
optional
minVal
integer | null
optional
maxVal
integer | null
optional
strVal
string | null
optional
colorTarget
integer | null
optional
speciesTarget
integer | null
optional
text
string | null
optional
Example
[
{
"internal_id": 154,
"type": "stats",
"name": "Level",
"species": null,
"isChance": false,
"minVal": 1,
"maxVal": 2,
"strVal": null,
"colorTarget": null,
"speciesTarget": null,
"text": null
},
{
"internal_id": 155,
"type": "stats",
"name": "Max HP",
"species": null,
"isChance": false,
"minVal": 1,
"maxVal": 3,
"strVal": null,
"colorTarget": null,
"speciesTarget": null,
"text": null
},
{
"internal_id": 156,
"type": "stats",
"name": "Strength",
"species": null,
"isChance": false,
"minVal": 1,
"maxVal": 3,
"strVal": null,
"colorTarget": null,
"speciesTarget": null,
"text": null
},
{
"internal_id": 157,
"type": "stats",
"name": "Movement",
"species": null,
"isChance": false,
"minVal": 1,
"maxVal": 3,
"strVal": null,
"colorTarget": null,
"speciesTarget": null,
"text": null
},
{
"internal_id": -1,
"type": "disease",
"name": "Neezles",
"species": [
"Tonu"
],
"isChance": false
}
]
Modified at 2025-03-02 21:45:11