Monsters Route

Introduction

This route fetches a list of all the monsters that can be encountered in the Legend of Zelda games, and outputs that in JSON format. The user can define his own pagination and also use search queries to find the desired output.

Sample Result

{
"success": true,
"count": 2,
"data": [
{
"appearances": [
"https://zelda.fanapis.com/api/games/5f6ce9d805615a85623ec2d5"
],
"name": "Abominom",
"description": "Abominoms are enemies in the Philips CD-i game The Faces of Evil. ",
"id": "5f6d1715a837149f8b47a157"
},
{
"appearances": [
"https://zelda.fanapis.com/api/games/5f6ce9d805615a85623ec2ba"
],
"name": "Arwing",
"description": "Arwings are unused enemies in Ocarina of Time. ",
"id": "5f6d1715a837149f8b47a158"
}
]
}

Route

METHODURLDESCRIPTION
GEThttps://zelda.fanapis.com/api/monstersThis route retrieves a list of all the monsters of The Legend of Zelda games so far.
GEThttps://zelda.fanapis.com/api/monsters/:monster_idThis route retrieves one The Legend of Zelda monster using its ID.

Parameters

This route supports the following parameters:

Parameterdefault valueExample URLDESCRIPTION
limit20https://zelda.fanapis.com/api/monsters?limit=100This parameter is used to set the maximum amount of items in the response
page0https://zelda.fanapis.com/api/monsters?limit=20&page=3This parameter is used no navigate between pages of results
namenonehttps://zelda.fanapis.com/api/monsters?name=BokoblinThis parameter is used to search for monsters by their names