Hyrule Compendium
Data on every item, monster and creature in Zelda: BOTW
The Hyrule Compendium API serves entries from The Legend of Zelda: Breath of the Wild—monsters, materials, equipment and more—with descriptions, locations, drops and images. Fetch an entry by name for JSON. Fan-made and keyless; it has moved off Heroku to api.hyrule-compendium.com.
GET https://api.hyrule-compendium.com/v3/compendium/entry/white-maned_lynel
{
"data": {
"name": "white-maned lynel",
"category": "monsters",
"id": 123,
"common_locations": [
"Hyrule Field",
"Hebra Mountains"
],
"drops": [
"lynel horn",
"lynel hoof",
"lynel guts"
],
"dlc": false
},
"status": 200
}curl "https://api.hyrule-compendium.com/v3/compendium/entry/white-maned_lynel"const res = await fetch("https://api.hyrule-compendium.com/v3/compendium/entry/white-maned_lynel");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.hyrule-compendium.com/v3/compendium/entry/white-maned_lynel")
print(res.json())/v3/compendium/entry/white-maned_lynelPROBEDData on every item, monster and creature in Zelda: BOTW
/v3V3 — documented GET route.
/v3/1V3 details by ID (example: 1).
/v3?limit=10V3 — documented GET route.
/v3/search?q=testSearch by query parameters.
/v3/V3 — 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.
Hyrule Compendium: common questions
Is Hyrule Compendium free to use?
Yes — Hyrule Compendium is a free games API. Free tier: Free — no API key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Hyrule Compendium need an API key?
No — Hyrule Compendium needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Hyrule Compendium from the browser?
Yes — Hyrule Compendium 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 Hyrule Compendium up right now?
As of our last scheduled check, Hyrule Compendium is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.