GET https://narutodb.xyz/api/tailed-beast
curl -X 'GET' \
'https://narutodb.xyz/api/tailed-beast' \
-H 'accept: application/json'
{
"tailedBeasts": [
{
"id": 1,
"name": "Ten-Tails",
"images": [
"https://static.wikia.nocookie.net/naruto/images/e/e6/Ten-Tails_emerges.png/revision/latest/scale-to-width-down/300?cb=20140523101840"
],
"debut": {
"manga": "Naruto Chapter #467",
"anime": "Naruto Shippūden Episode #205",
"novel": "The Last: Naruto the Movie",
"movie": "The Last: Naruto the Movie",
"game": "Naruto Shippūden: Ultimate Ninja Storm Revolution",
"ova": "The Far Reaches of Hope",
"appearsIn": "Anime, Manga, Novel, Game, Movie"
},
"family": {
"incarnation with the god tree": "Kaguya Ōtsutsuki",
"depowered form": "Demonic Statue of the Outer Path"
},
"jutsu": [
"Six Paths Senjutsu",
"Tailed Beast Ball",
"Tailed Beast Chakra Arms",
"Tailed Beast Shockwave",
"Ten-Tails Fission",
"Tenpenchii",
"Truth-Seeking Ball",
"Wood Release: Cutting Technique"
],
"natureType": [
"Fire Release",
"Wind Release",
"Lightning Release",
"Earth Release",
"Water Release",
"Wood Release",
"Yin Release",
"Yang Release",
"Yin–Yang Release"
],
"personal": {
"status": "Incapacitated",
"kekkeiGenkai": "Wood Release",
"classification": "Tailed Beast",
"jinchūriki": [
"Hagoromo Ōtsutsuki",
"Obito Uchiha",
"Madara Uchiha"
],
"titles": [
"十尾Jūbi",
"one-eyedGod(天目一箇神,AmeNoHitotsuNoKami)",
"datara(ダタラ)",
"deidarabotchi(デイダラボッチ,Deidarabocchi)",
"nation-buildingGod(国造りの神,KunizukuriNoKami)"
]
},
"uniqueTraits": [
"Can absorb chakra"
]
},
{
"id": 153,
"name": "Chōmei",
"images": [
"https://static.wikia.nocookie.net/naruto/images/7/78/Chomei.png/revision/latest/scale-to-width-down/300?cb=20130913103927"
],
"debut": {
...
Pagination and Limit
https://narutodb.xyz/api/tailed-beast?page=1&limit=12
curl -X 'GET' \
'https://narutodb.xyz/api/tailed-beast?page=1&limit=12' \
-H 'accept: application/json'
{
"tailedBeasts": [
{
"id": 1,
"name": "Ten-Tails",
"images": [
"https://static.wikia.nocookie.net/naruto/images/e/e6/Ten-Tails_emerges.png/revision/latest/scale-to-width-down/300?cb=20140523101840"
],
"debut": {
"manga": "Naruto Chapter #467",
"anime": "Naruto Shippūden Episode #205",
"novel": "The Last: Naruto the Movie",
"movie": "The Last: Naruto the Movie",
"game": "Naruto Shippūden: Ultimate Ninja Storm Revolution",
"ova": "The Far Reaches of Hope",
"appearsIn": "Anime, Manga, Novel, Game, Movie"
},
"family": {
"incarnation with the god tree": "Kaguya Ōtsutsuki",
"depowered form": "Demonic Statue of the Outer Path"
},
"jutsu": [
"Six Paths Senjutsu",
"Tailed Beast Ball",
"Tailed Beast Chakra Arms", .... ]
"currentPage": "1",
"pageSize": "12",
"totalTailedBeasts": 10
}