Zelda
Zelda — The Legend of Zelda franchise data
Zelda exposes the Legend of Zelda franchise data We verified a keyless GET endpoint returning JSON (Games & Comics). Check the provider docs for rate limits and terms before production use.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://zelda.fanapis.com/api/games?limit=2
{
"success": true,
"count": 2,
"data": [
{
"name": "The Legend of Zelda",
"description": "The Legend of Zelda is the first installment of the Zelda series. It centers its plot around a boy named Link, who becomes the central protagonist throughout the series. It came out as early as 1986 for the Famicom in Japan, and was later released in the western world, including Europe and the US in 1987. It has since then been re-released several times, for the Nintendo GameCube as well as the Game Boy Advance. The Japanese version of the game on the Famicom is known as The Hyrule Fantasy: The Legend of Zelda. ",
"developer": "Nintendo R&D 4",
"publisher": "Nintendo",
"released_date": " February 21, 1986",
"id": "5f6ce9d805615a85623ec2b7"
},
{
"name": "The Legend of Zelda: A Link to the Past",
"description": "One day, a band of evil thieves managed to open the gateway to the Sacred Realm, where the mystical Triforce was hidden. Upon finding the sacred golden relic, the leader of the thieves, Ganondorf, slew his followers and claimed it as his own. Before long, dark power began to flow forth from the Sacred Realm. People were drawn into this darkness, and never heard from again. As a result, the King of Hyrule ordered the seven sages to seal the entrance to the Sacred Realm. A great battle ensued—monsters poured into the Light World from the sacred land and attacked the castle. The Knights of Hyrule defended the sages during the great battle against evil, and, though most of them perished in the struggle, the sages were able to cast their seal, stopping the flow of darkness and trapping the evil king Ganon within. This battle became known as the Imprisoning War. ",
"developer": "Nintendo",
"publisher": "Nintendo",
"released_date": " April 13, 1992",
"id": "5f6ce9d805615a85623ec2b8"
}
]
}curl "https://zelda.fanapis.com/api/games?limit=2"const res = await fetch("https://zelda.fanapis.com/api/games?limit=2");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://zelda.fanapis.com/api/games?limit=2")
print(res.json())/api/games?limit=2PROBEDZelda — The Legend of Zelda franchise data
/apiApi — documented GET route.
/api/1Api details by ID (example: 1).
/api?limit=10Api — documented GET route.
/api/search?q=testSearch by query parameters.
/api/games?limit=5Game title metadata.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
Zelda: common questions
Is Zelda free to use?
Yes — Zelda is a free games API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Zelda need an API key?
No — Zelda needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Zelda from the browser?
Yes — Zelda 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 Zelda up right now?
Zelda is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.