Items
Get all items
Properties
- Name
item_id
TypeintegerDescriptionItem ID.
- Name
type
TypestringDescriptionItem type.
- Name
name
TypestringDescriptionItem name.
- Name
description
TypestringDescriptionItem description.
- Name
classification
TypestringDescriptionItem classification.
- Name
tags
TypearrayDescriptionItem tags.
- Name
environment
TypearrayDescriptionItem environment.
- Name
images
TypeobjectDescriptionItem image URLs.
- Name
is_limited_edition
TypebooleanDescriptionIs item limited edition.
- Name
is_givable
TypebooleanDescriptionIs item givable.
- Name
is_tradable
TypebooleanDescriptionIs item tradable.
- Name
is_convertible
TypebooleanDescriptionIs item convertible.
- Name
is_smashable
TypebooleanDescriptionIs item smashable.
- Name
is_potion
TypebooleanDescriptionIs item a potion.
- Name
is_skin
TypebooleanDescriptionIs item a skin.
- Name
is_charm
TypebooleanDescriptionIs item a charm.
- Name
is_quantity_limited
TypebooleanDescriptionIs item quantity limited.
- Name
has_stats
TypeobjectDescriptionItem stats.
- Name
quantity_limit
TypeintegerDescriptionItem quantity limit.
Request
GET
https://api.mouse.rip/itemsconst items = await fetch('https://api.mouse.rip/items')
console.log(items)
Response
[
{
"id": 1168,
"type": "hot_tub_weapon",
"name": "Mouse Hot Tub",
"description": "Instead of harming a mouse, give it a soothing place to relax before moving it to a location far from the Kingdom.",
"classification": "weapon",
"tags": [
"physical",
"weapon"
],
"environment": [
"cape_clawed",
"derr_dunes",
"dracano",
"elub_shore",
"jungle_of_dread",
"nerg_plains"
],
"images": {
"thumbnail": "https://www.mousehuntgame.com/images/items/weapons/a84f9ea42272cb2f19592f90fbf199c8.jpg?cv=2",
"large": "https://www.mousehuntgame.com/images/items/weapons/trap_small/f1cbf7275abfcead8bab92d49b21a592.png?cv=2",
"gray": "https://www.mousehuntgame.com/images/items/weapons/gray/6bd5591a5f54daec926239a131374496.jpg?cv=2",
"transparent": "",
"transparent_large": "",
"best": "https://www.mousehuntgame.com/images/items/weapons/trap_small/f1cbf7275abfcead8bab92d49b21a592.png?cv=2"
},
"is_limited_edition": false,
"is_givable": false,
"is_tradable": false,
"is_convertible": false,
"is_smashable": false,
"is_potion": false,
"is_skin": false,
"is_charm": false,
"is_quantity_limited": true,
"has_stats": {
"power_type": "physical",
"has_power": true,
"power": 70,
"power_formatted": 70,
"has_power_bonus": true,
"power_bonus": 3,
"power_bonus_formatted": "3%",
"has_attraction_bonus": true,
"attraction_bonus": 35,
"attraction_bonus_formatted": "35%",
"has_luck": true,
"luck": 2,
"luck_formatted": 2,
"has_cheese_effect": false,
"cheese_effect": "No Effect",
"has_skins": false,
"skins": [],
"has_min_title": true,
"has_min_points": false,
"min_title": "novice"
},
"quantity_limit": 1
}
]
Get item
Replace :id
with either the item type or ID.
Properties
- Name
item_id
TypeintegerDescriptionItem ID.
- Name
type
TypestringDescriptionItem type.
- Name
name
TypestringDescriptionItem name.
- Name
description
TypestringDescriptionItem description.
- Name
classification
TypestringDescriptionItem classification.
- Name
tags
TypearrayDescriptionItem tags.
- Name
environment
TypearrayDescriptionItem environment.
- Name
images
TypeobjectDescriptionItem image URLs.
- Name
is_limited_edition
TypebooleanDescriptionIs item limited edition.
- Name
is_givable
TypebooleanDescriptionIs item givable.
- Name
is_tradable
TypebooleanDescriptionIs item tradable.
- Name
is_convertible
TypebooleanDescriptionIs item convertible.
- Name
is_smashable
TypebooleanDescriptionIs item smashable.
- Name
is_potion
TypebooleanDescriptionIs item a potion.
- Name
is_skin
TypebooleanDescriptionIs item a skin.
- Name
is_charm
TypebooleanDescriptionIs item a charm.
- Name
is_quantity_limited
TypebooleanDescriptionIs item quantity limited.
- Name
has_stats
TypeobjectDescriptionItem stats.
- Name
quantity_limit
TypeintegerDescriptionItem quantity limit.
Request
GET
https://api.mouse.rip/items/:id// Can use either type or ID
const item = await fetch('https://api.mouse.rip/items/rare_map_dust_stat_item')
console.log(item)
const item = await fetch('https://api.mouse.rip/items/926')
console.log(item)
Response
{
"id": 1168,
"type": "hot_tub_weapon",
"name": "Mouse Hot Tub",
"description": "Instead of harming a mouse, give it a soothing place to relax before moving it to a location far from the Kingdom.",
"classification": "weapon",
"tags": [
"physical",
"weapon"
],
"environment": [
"cape_clawed",
"derr_dunes",
"dracano",
"elub_shore",
"jungle_of_dread",
"nerg_plains"
],
"images": {
"thumbnail": "https://www.mousehuntgame.com/images/items/weapons/a84f9ea42272cb2f19592f90fbf199c8.jpg?cv=2",
"large": "https://www.mousehuntgame.com/images/items/weapons/trap_small/f1cbf7275abfcead8bab92d49b21a592.png?cv=2",
"gray": "https://www.mousehuntgame.com/images/items/weapons/gray/6bd5591a5f54daec926239a131374496.jpg?cv=2",
"transparent": "",
"transparent_large": "",
"best": "https://www.mousehuntgame.com/images/items/weapons/trap_small/f1cbf7275abfcead8bab92d49b21a592.png?cv=2"
},
"is_limited_edition": false,
"is_givable": false,
"is_tradable": false,
"is_convertible": false,
"is_smashable": false,
"is_potion": false,
"is_skin": false,
"is_charm": false,
"is_quantity_limited": true,
"has_stats": {
"power_type": "physical",
"has_power": true,
"power": 70,
"power_formatted": 70,
"has_power_bonus": true,
"power_bonus": 3,
"power_bonus_formatted": "3%",
"has_attraction_bonus": true,
"attraction_bonus": 35,
"attraction_bonus_formatted": "35%",
"has_luck": true,
"luck": 2,
"luck_formatted": 2,
"has_cheese_effect": false,
"cheese_effect": "No Effect",
"has_skins": false,
"skins": [],
"has_min_title": true,
"has_min_points": false,
"min_title": "novice"
},
"quantity_limit": 1
}
Get tradable items
Properties
- Name
id
TypeintegerDescriptionItem ID.
- Name
type
TypestringDescriptionItem type.
- Name
name
TypestringDescriptionItem name.
- Name
image
TypestringDescriptionItem image URL.
- Name
truncated_name
TypestringDescriptionTruncated item name.
Request
GET
https://api.mouse.rip/items-tradableconst tradableItems = await fetch('https://api.mouse.rip/items-tradable')
console.log(tradableItems)
Response
[
{
"id": 103,
"type": "maki_cheese",
"name": "Maki Cheese",
"image": "https://www.mousehuntgame.com/images/items/bait/df0071729e6a9f91360c124a40eae8ec.jpg",
"truncated_name": "Maki Cheese"
},
...
]