Hyrule Compendium API
v2
Компендиум Hyrule — это энциклопедия всех внутриигровых интерактивных предметов в мире Hyrule. С помощью этого замечательного API вы можете получить доступ к его данным и встроить их в свое собственное приложение.
Вы можете увидеть конкретный товар, все товары в категории или все данные в нашей базе данных. Вот пример запроса и ответа, получающего данные о белогривом линеле:
$ curl https://botw-compendium.herokuapp.com/api/v3/entry/white-maned_lynel
{
"data": {
"name": "white-maned lynel",
"id": 123,
"category": "monsters",
"description": "These fearsome monsters have lived in Hyrule since ancient times. Their ability to breathe fire makes White-Maned Lynels among the toughest of the species; each one of their attacks is an invitation to the grave. There are so few eyewitness accounts of this breed because a White-Maned Lynel is not one to let even simple passersby escape with their lives.",
"common_locations":[
"Hyrule Field",
"Hebra Mountains"
]
"drops": [
"lynel horn",
"lynel hoof",
"lynel guts"
],
"image": "https://botw-compendium.herokuapp.com/api/v3/entry/white-maned_lynel/image"
}
}
Для начала ознакомьтесь с документацией.
Если вы столкнулись с неисправностью или у вас есть какие-либо предложения, откройте проблему или запрос на вытягивание.
Инструкции по локальному запуску можно найти [https://gadhagod.github.io/Hyrule-Compendium-API/#/self-hosting].