Naruto Universe API

The Naruto Universe API provides endpoints to retrieve information about characters, clans, and villages from the Naruto series. It offers data related to the fictional world created by Masashi Kishimoto, including details about iconic characters, powerful clans, and the diverse villages within the Naruto universe.

Base URL

"https://openapi-idk8.onrender.com"


Endpoint 1

GET `https://openapi-idk8.onrender.com/naruto/characters`

Sample Response:
{
  "characters": [
    {
      "id": 1344,
      "name": "Naruto Uzumaki",
      "images": [
        "https://static.wikia.nocookie.net/naruto/images/d/d6/Naruto_Part_I.png",
        "https://static.wikia.nocookie.net/naruto/images/7/7d/Naruto_Part_II.png"
      ],
      "debut": {
        "manga": "Naruto Chapter #1",
        "anime": "Naruto Episode #1",
        "novel": "Naruto: Innocent Heart, Demonic Blood",
        "movie": "Naruto the Movie: Ninja Clash in the Land of Snow",
        "game": "Naruto: Konoha Ninpōchō",
        "ova": "Find the Four-Leaf Red Clover!",
        "appearsIn": "Anime, Manga, Novel, Game, Movie"
      },
      "family": {
        "father": "Minato Namikaze",
        "mother": "Kushina Uzumaki",
        "son": "Boruto Uzumaki",
        "daughter": "Himawari Uzumaki",
        "wife": "Hinata Uzumaki",
        "adoptive son": "Kawaki",
        "godfather": "Jiraiya"
      },
      ...
                

Endpoint 2

GET `/naruto/clans`

Sample Response:
{
  "clans": [
    {
      "id": 0,
      "name": "Aburame",
      "characters": [9, 10, 11, 12, 13, 14, 15, 16]
    },
    {
      "id": 1,
      "name": "Akimichi",
      "characters": [38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 596]
    },
    {
      "id": 2,
      "name": "Amagiri",
      "characters": [57, 58]
    },
    {
      "id": 3,
      "name": "Chinoike",
      "characters": [145, 947]
    },
    {
      "id": 4,
      "name": "Funato",
      "characters": [240, 242, 243, 244, 245, 246, 247, 331, 508, 655, 656]
    },
      ...
                

Endpoint 3

GET `https://openapi-idk8.onrender.com/naruto/villages`

Sample Response:
{
  "villages": [
    {
      "id": 0,
      "name": "Amegakure",
      "characters": [24, 105, 160, 252, 257, 368, 383, 408, 448, 476, 526, 574, 627, 649, 684, 736, 790, 845, 854, 861, 911, 981, 996, 1017, 1085, 1147, 1149, 1228, 1247, 1319, 1356, 1395]
    },
    {
      "id": 1,
      "name": "Bamboo Village",
      "characters": [65, 500]
    },
    {
      "id": 2,
      "name": "Ceramic Village",
      "characters": [334, 585, 769]
    },
    {
      "id": 3,
      "name": "Curtain Village",
      "characters": []
    },
      ...