Titles


Get all titles

Properties

  • Name
    id
    Type
    string
    Description
  • Name
    order
    Type
    integer
    Description

    Title display order.

  • Name
    icon
    Type
    string
    Description

    URL to the title icon.

  • Name
    name
    Type
    string
    Description

    Title name.

  • Name
    name_female
    Type
    string
    Description

    Title name (female).

  • Name
    name_male
    Type
    string
    Description

    Title name (male).

Request

GET
https://api.mouse.rip/titles
const titles = await fetch('https://api.mouse.rip/titles')
console.log(titles)

Response

[
  {
    "id": "novice",
    "order": 1,
    "icon": "https://www.mousehuntgame.com/images/titles/84bc1109b5cd7aa8c24d195bc8207c38.png",
    "name": "Novice",
    "name_female": "Novice",
    "name_male": "Novice"
  },
  {
    "id": "recruit",
    "order": 2,
    "icon": "https://www.mousehuntgame.com/images/titles/3f1e44bbaa7138da4c326819e9f3f0a8.png",
    "name": "Recruit",
    "name_female": "Recruit",
    "name_male": "Recruit"
  },
...
]