All the API endpoints have been migrated from https://api.narutodb.xyz to https://narutodb.xyz/api. Pleas refer to the documentation for more information. Sorry for the inconvenience 🙏

Docs
Get All Kara
GET https://narutodb.xyz/api/kara
curl -X 'GET' \
        'https://narutodb.xyz/api/kara' \
     -H 'accept: application/json'
{
  "kara": [
    {
      "id": 17,
      "name": "Ada",
      "images": [
        "https://static.wikia.nocookie.net/naruto/images/f/f9/Ada.png/revision/latest/scale-to-width-down/300?cb=20210421051547"
      ],
      "debut": {
        "manga": "Boruto Chapter #56",
        "appearsIn": "Manga"
      },
      "family": {
        "brother": "Daemon"
      },
      "personal": {
        "sex": "Female",
        "age": {
          "Boruto Manga": "16"
        },
        "kekkeiGenkai": "Senrigan",
        "affiliation": [
          "Kara",
          "Konohagakure"
        ],
        "titles": [
          "エイダEida"
        ]
      },
      "tools": []
    },
    {
      "id": 80,
      "name": "Ao",
      "images": [
        "https://static.wikia.nocookie.net/naruto/images/7/72/Ao.png/revision/latest/scale-to-width-down/300?cb=20171014133718",
        "https://static.wikia.nocookie.net/naruto/images/4/4c/Ao_Part_III.png/revision/latest/scale-to-width-down/300?cb=20210208005708"
      ],
      "debut": {
        "manga": "Naruto Chapter #454",
        "anime": "Naruto Shippūden Episode #199",
        "novel": "Sasuke Shinden: Book of Sunrise  (Mentioned)",
        "game": "Naruto Shippūden: Ultimate Ninja Impact",
        "appearsIn": "Anime, Manga, Novel, Game"
      },
      "jutsu": [
        "Barrier Talisman: Armoured Eye",
        "Sensing Technique",
        "Sensing Water Sphere",
        "Water Release: Water Colliding Wave"
      ],
      "natureType": [
        "Water Release",
        "Yin Release"
        ...
 

Pagination and Limit

https://narutodb.xyz/api/kara?page=1&limit=20
curl -X 'GET' \
  'https://narutodb.xyz/api/kara?page=1&limit=20' \
  -H 'accept: application/json'
{
   "kara": [
    {
      "id": 17,
      "name": "Ada",
      "images": [
        "https://static.wikia.nocookie.net/naruto/images/f/f9/Ada.png/revision/latest/scale-to-width-down/300?cb=20210421051547"
      ],
      "debut": {
        "manga": "Boruto Chapter #56",
        "appearsIn": "Manga"
      },
      "family": {
        "brother": "Daemon"
      },
      "personal": {
        "sex": "Female",
        "age": {
          "Boruto Manga": "16"....]
 
  "currentPage": "1",
  "pageSize": "20",
  "totalKara": 32
}