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 Clans
GET https://narutodb.xyz/api/clan
curl -X 'GET' \
        'https://narutodb.xyz/api/clan' \
     -H 'accept: application/json'
{
  "clans": [
    {
      "id": 0,
      "name": "Aburame",
      "characters": [
        {
          "id": 9,
          "name": "Harika Aburame",
          "images": [
            "https://static.wikia.nocookie.net/naruto/images/4/4e/Harika_Aburame.png/revision/latest/scale-to-width-down/300?cb=20220904143733"
          ],
          "debut": {
            "anime": "Boruto Episode #261",
            "appearsIn": "Anime"
          },
          "jutsu": [
            "Parasitic Destruction Insect Technique (Kikaichū)"
          ],
          "personal": {
            "sex": "Female",
            "affiliation": "Konohagakure",
            "clan": "Aburame"
          },
          "rank": {
            "ninjaRank": {
              "Boruto Manga": "Academy Student"
            }
          },
          "voiceActors": {
            "japanese": "Tomo Muranaka"
          }
        },
        {
          "id": 10,
          "name": "Muta Aburame",
          "images": [
            "https://static.wikia.nocookie.net/naruto/images/1/1f/Aburame_Muta.png/revision/latest/scale-to-width-down/300?cb=20160115101249"
          ],
          "debut": {
            ...
 

Pagination and Limit

https://narutodb.xyz/api/clan?page=1&limit=20
curl -X 'GET' \
  'https://narutodb.xyz/api/clan?page=1&limit=20' \
  -H 'accept: application/json'
{
  "clans": [
    {
      "id": 0,
      "name": "Aburame",
      "characters": [
        {
          "id": 9,
          "name": "Harika Aburame",
          "images": [
            "https://static.wikia.nocookie.net/naruto/images/4/4e/Harika_Aburame.png/revision/latest/scale-to-width-down/300?cb=20220904143733"
          ],
          "debut": {
            "anime": "Boruto Episode #261",
            "appearsIn": "Anime"
          },
          "jutsu": [
            "Parasitic Destruction Insect Technique (Kikaichū)"
          ],
          "personal": {
            "sex": "Female",
            "affiliation": "Konohagakure",
            "clan": "Aburame"
          }.... ]
 
  "currentPage": "1",
  "pageSize": "20",
  "totalKara": 32
}