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 Teams
GET https://narutodb.xyz/api/team
curl -X 'GET' \
        'https://narutodb.xyz/api/team' \
     -H 'accept: application/json'
{
  "teams": [
    {
      "id": 0,
      "name": "Akagi Gang",
      "characters": [
        {
          "id": 132,
          "name": "Bunzō",
          "images": [
            "https://static.wikia.nocookie.net/naruto/images/f/f0/Bunzo.png/revision/latest/scale-to-width-down/300?cb=20150529192134"
          ],
          "debut": {
            "anime": "Naruto Episode #97",
            "appearsIn": "Anime"
          },
          "personal": {
            "sex": "Male",
            "height": {
              "Part I": "163.5cm"
            },
            "occupation": "Loan Collector",
            "affiliation": "Land of Tea",
            "team": "Akagi Gang",
            "partner": "Senta"
          },
          "tools": [
            "Sword"
          ],
          "voiceActors": {
            "japanese": "Atsushi Gotō",
            "english": "Wally Wingert"
          }
        },
        {
          "id": 1071,
          "name": "Senta",
          "images": [
            "https://static.wikia.nocookie.net/naruto/images/1/15/Senta.png/revision/latest/scale-to-width-down/300?cb=20150529192352"
          ],
          "debut": {
            "anime": "Naruto Episode #97",
            "appearsIn": "Anime"
          },
          "personal": {
            "sex": "Male",
            "height": {
              "Part I": "180cm"
            },
            "occupation": "Loan Collector",
            "affiliation": "Land of Tea",
            "team": "Akagi Gang",
            "partner": "Bunzō"
          },
          "tools": [
            "Sword"
          ],
          "voiceActors": {
            "japanese": "Kōsuke Okano",
            "english": "Richard Cansino"
          }
        }
      ]
    },
    {
      "id": 1,
      "name": "Allied Mothers Force",
      "characters": [
        {
          "id": 41,
          "name": "Chōji's Mother",
          "images": [
            "https://static.wikia.nocookie.net/naruto/images/1/17/Choji%27s_Mother.png/revision/latest/scale-to-width-down/300?cb=20160125195859"
          ],
          "family": {
            "son": "Chōji Akimichi",
            "granddaughter": "Chōchō Akimichi",
            "husband": "Chōza Akimichi"
          },
          "personal": {
            "sex": "Female",
            "affiliation": "Konohagakure",
            "team": "Allied Mothers Force",
            "clan": "Akimichi"
            ...

Pagination and Limit

https://narutodb.xyz/api/team?page=2&limit=5
curl -X 'GET' \
  'https://narutodb.xyz/api/team?page=2&limit=5' \
  -H 'accept: application/json'
{
  "teams": [
    {
      "id": 5,
      "name": "A–B Combo",
      "characters": [
        {
          "id": 6,
          "name": "A (Fourth Raikage)",
          "images": [
            "https://static.wikia.nocookie.net/naruto/images/4/4c/Fourth_Raikage_2.png/revision/latest/scale-to-width-down/300?cb=20180901014100",
            "https://static.wikia.nocookie.net/naruto/images/4/4b/A_Part_III.png/revision/latest/scale-to-width-down/300?cb=20180901014050"
          ],
          "debut": {
            "manga": "Naruto Chapter #416",
            "anime": "Naruto Shippūden Episode #152",
            "novel": "Kakashi Hiden: Lightning in the Icy Sky",
            "movie": "Naruto the Movie: Blood Prison",
            "game": "Naruto Shippūden: Gekitō Ninja Taisen! Special",
            "ova": "Naruto Shippūden: UNSG anime cutscenes",
            "appearsIn": "Anime, Manga, Novel, Game, Movie"
          },
          "family": {
            "father": "A",
            "adoptive brother": "Killer B",
            "cousin": "Blue B" .... ]
 
  "currentPage": "2",
  "pageSize": "5",
  "totalTeams": 191
}