MH-API v0.1.0
Monster Hunter API
API Information
Version: v0.1.0
License: MIT License
License URL: https://opensource.org/license/MIT
Base URL: https://api.mh-api.com/v1
Endpoints
GET
/monsters
Search Monsters (Multiple)
Search for monsters and retrieve multiple monsters matching the criteria
Parameters:
Name | Location | Type | Required | Description |
---|---|---|---|---|
MonsterIds | query | string | No | Monster ID |
MonsterName | query | string | No | Monster name |
limit | query | integer | No | Number of records to retrieve |
offset | query | integer | No | Starting position |
sort | query | string | No | Sort order |
GET
/monsters/:monsterid
Search Monster (Single)
Search for a monster and retrieve a single monster matching the criteria
Parameters:
Name | Location | Type | Required | Description |
---|---|---|---|---|
monsterid | path | string | Yes | Monster ID |
Response Schemas
monster
Property | Type | Description |
---|---|---|
monster_id | string | Monster ID |
name | string | Monster name |
another_name | string | Monster alternative name |
category | string | Monster category |
ranking | array<Object> | モンスター総選挙の順位 |
title | array<string> | 登場作品 |
image_url | string | Monster image URL |
bgm | array<Object> | モンスターのBGM |
Error Responses
Status Code | Description |
---|---|
400 | Bad Request - The request is invalid |
404 | Not Found - The resource was not found |
500 | Internal Server Error - Server internal error |