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 Kekkeigenkai
GET https://narutodb.xyz/api/kekkei-genkai
curl -X 'GET' \
        'https://narutodb.xyz/api/kekkei-genkai' \
     -H 'accept: application/json'
{
  "kekkeigenkai": [
    {
      "id": 0,
      "name": "Boil Release",
      "characters": [
        {
          "id": 256,
          "name": "Futsu",
          "images": [
            "https://static.wikia.nocookie.net/naruto/images/d/d6/Futsu.png/revision/latest/scale-to-width-down/300?cb=20161208125717"
          ],
          "debut": {
            "anime": "Naruto Shippūden Episode #485",
            "novel": "Sasuke Shinden: Book of Sunrise",
            "appearsIn": "Anime, Novel"
          },
          "jutsu": [
            "Boil Release: Skilled Mist Technique"
          ],
          "natureType": [
            "Boil Release",
            "Fire Release",
            "Water Release"
          ],
          "personal": {
            "sex": "Male",
            "kekkeiGenkai": "Boil Release",
            "affiliation": [
              "Kumogakure  (Anime only)",
              "Konohagakure  (Novel only)"
            ]
          },
          "voiceActors": {
            "japanese": "Kengo Kawanishi",
            "english": "Richard Cansino"
          }
        },
        {
          "id": 363,
          "name": "Han",
          "images": [
            "https://static.wikia.nocookie.net/naruto/images/3/3c/Han.png/revision/latest/scale-to-width-down/300?cb=20220205121445"
          ],
          "debut": {
            ...
 

Pagination and Limit

https://narutodb.xyz/api/kekkei-genkai?page=1&limit=15
curl -X 'GET' \
  'https://narutodb.xyz/api/kekkei-genkai?page=1&limit=15' \
  -H 'accept: application/json'
{
  "kekkeigenkai": [
    {
      "id": 15,
      "name": "Lava Release   (Anime only)",
      "characters": [
        {
          "id": 736,
          "name": "Kyūsuke",
          "images": [
            "https://static.wikia.nocookie.net/naruto/images/e/e7/Kyusuke.png/revision/latest/scale-to-width-down/300?cb=20140123150414"
          ],
          "debut": {
            "manga": "Naruto Chapter #446",
            "anime": "Naruto Shippūden Episode #173",
            "game": "Naruto Shippūden: Ultimate Ninja Storm 3",
            "appearsIn": "Anime, Manga, Game"
          },
          "jutsu": [
            "Lava Release: Quicklime Congealing Technique (Anime only)"
          ],
          "natureType": [
            "Lava Release  (Anime only)",
            "Fire Release  (Anime only)",
            "Earth Release .... ]
 
  "currentPage": "1",
  "pageSize": "15",
  "totalKekkeiGenkai": 39
}