Anime Tournament API — free mock REST API for testing

An original anime-style tournament with transformations, rankings and deliberately dramatic power scaling.

The Anime Tournament API uses original characters rather than licensed ones, and exists to exercise bracket logic: fighters with power levels, matches seeded from them, and rounds that only advance when the previous one is complete. Small surface, strict ordering rules.

Base URL: https://funapi.dev/api/anime/v1 · 5 endpoints · OpenAPI 3.1 spec and Postman collection available. New here? Read the getting started guide.

Example request and response

GET https://funapi.dev/api/anime/v1/fighters — List fighters, filter by rank. No token, no signup:

curl -i https://funapi.dev/api/anime/v1/fighters

answers 200 OK with:

{
  "total": 3,
  "data": [
    {
      "id": 1,
      "name": "Nova Fist",
      "element": "plasma",
      "power": 9100,
      "rank": "S"
    },
    {
      "id": 2,
      "name": "Mochi Ronin",
      "element": "wind",
      "power": 7200,
      "rank": "A"
    },
    {
      "id": 3,
      "name": "Captain Kawaii",
      "element": "water",
      "power": 6800,
      "rank": "A"
    }
  ]
}

Open and run this endpoint

What you can practise here

fighters

heroes and rivals

matches

tournament battles

All 39 mock REST APIs

Last updated