Monster Hunter World
Monsters, weapons and items from Monster Hunter: World
A structured dataset for Monster Hunter: World covering monsters, their elemental weaknesses and rewards, plus weapons, armor and items. The /monsters endpoint returns full records including habitats and drop tables. No key required, CORS enabled.
GET https://mhw-db.com/monsters
[
{
"id": 1,
"type": "small",
"species": "herbivore",
"name": "Aptonoth",
"description": "Docile herbivores that graze in packs.",
"weaknesses": [
{
"element": "fire",
"stars": 1
}
]
}
]curl "https://mhw-db.com/monsters"const res = await fetch("https://mhw-db.com/monsters");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://mhw-db.com/monsters")
print(res.json())/monstersPROBEDMonsters, weapons and items from Monster Hunter: World
/monsters?limit=5Paginated variant with limit parameter.
/ailments%3C/code%3E%3C/p%3EP%3E — documented GET route.
/ailments/<id>%3C/code%3E%3C/p%3EP%3E — documented GET route.
/armor%3C/code%3E%3C/p%3EP%3E — documented GET route.
/armor/<id>%3C/code%3E%3C/p%3EP%3E — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Monster Hunter World: common questions
Is Monster Hunter World free to use?
Yes — Monster Hunter World is a free games API. Free tier: Free, no API key required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Monster Hunter World need an API key?
No — Monster Hunter World needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Monster Hunter World from the browser?
Yes — Monster Hunter World returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Monster Hunter World up right now?
As of our last scheduled check, Monster Hunter World is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.