Items


Get all items

Properties

  • Name
    item_id
    Type
    integer
    Description

    Item ID.

  • Name
    type
    Type
    string
    Description

    Item type.

  • Name
    name
    Type
    string
    Description

    Item name.

  • Name
    description
    Type
    string
    Description

    Item description.

  • Name
    classification
    Type
    string
    Description

    Item classification.

  • Name
    tags
    Type
    array
    Description

    Item tags.

  • Name
    environment
    Type
    array
    Description

    Item environment.

  • Name
    images
    Type
    object
    Description

    Item image URLs.

  • Name
    is_limited_edition
    Type
    boolean
    Description

    Is item limited edition.

  • Name
    is_givable
    Type
    boolean
    Description

    Is item givable.

  • Name
    is_tradable
    Type
    boolean
    Description

    Is item tradable.

  • Name
    is_convertible
    Type
    boolean
    Description

    Is item convertible.

  • Name
    is_smashable
    Type
    boolean
    Description

    Is item smashable.

  • Name
    is_potion
    Type
    boolean
    Description

    Is item a potion.

  • Name
    is_skin
    Type
    boolean
    Description

    Is item a skin.

  • Name
    is_charm
    Type
    boolean
    Description

    Is item a charm.

  • Name
    is_quantity_limited
    Type
    boolean
    Description

    Is item quantity limited.

  • Name
    has_stats
    Type
    object
    Description

    Item stats.

  • Name
    quantity_limit
    Type
    integer
    Description

    Item quantity limit.

Request

GET
https://api.mouse.rip/items
const 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
    Type
    integer
    Description

    Item ID.

  • Name
    type
    Type
    string
    Description

    Item type.

  • Name
    name
    Type
    string
    Description

    Item name.

  • Name
    description
    Type
    string
    Description

    Item description.

  • Name
    classification
    Type
    string
    Description

    Item classification.

  • Name
    tags
    Type
    array
    Description

    Item tags.

  • Name
    environment
    Type
    array
    Description

    Item environment.

  • Name
    images
    Type
    object
    Description

    Item image URLs.

  • Name
    is_limited_edition
    Type
    boolean
    Description

    Is item limited edition.

  • Name
    is_givable
    Type
    boolean
    Description

    Is item givable.

  • Name
    is_tradable
    Type
    boolean
    Description

    Is item tradable.

  • Name
    is_convertible
    Type
    boolean
    Description

    Is item convertible.

  • Name
    is_smashable
    Type
    boolean
    Description

    Is item smashable.

  • Name
    is_potion
    Type
    boolean
    Description

    Is item a potion.

  • Name
    is_skin
    Type
    boolean
    Description

    Is item a skin.

  • Name
    is_charm
    Type
    boolean
    Description

    Is item a charm.

  • Name
    is_quantity_limited
    Type
    boolean
    Description

    Is item quantity limited.

  • Name
    has_stats
    Type
    object
    Description

    Item stats.

  • Name
    quantity_limit
    Type
    integer
    Description

    Item 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
    Type
    integer
    Description

    Item ID.

  • Name
    type
    Type
    string
    Description

    Item type.

  • Name
    name
    Type
    string
    Description

    Item name.

  • Name
    image
    Type
    string
    Description

    Item image URL.

  • Name
    truncated_name
    Type
    string
    Description

    Truncated item name.

Request

GET
https://api.mouse.rip/items-tradable
const 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"
  },
  ...
]