Explore Dragon Ball fighters and transformations, then run authenticated tournament battles with deterministic sandbox results.
The Dragon Ball API tracks fighters, their transformations and the power levels those transformations produce, plus tournaments that seed brackets from them. Power level is derived rather than stored, which makes it a compact target for testing a client against computed fields it must not try to write.
Base URL: https://funapi.dev/api/dragonball/v1 · 6 endpoints · OpenAPI 3.1 spec and Postman collection available. New here? Read the getting started guide.
GET https://funapi.dev/api/dragonball/v1/fighters — List fighters by race or minimum power. No token, no signup:
curl -i https://funapi.dev/api/dragonball/v1/fighters
answers 200 OK with:
{
"total": 4,
"data": [
{
"id": 1,
"name": "Goku",
"race": "Saiyan",
"powerLevel": 9001,
"transformations": [
"Super Saiyan",
"Ultra Instinct"
]
},
{
"id": 2,
"name": "Vegeta",
"race": "Saiyan",
"powerLevel": 8800,
"transformations": [
"Super Saiyan Blue",
"Ultra Ego"
]
},
{
"id": 3,
"name": "Piccolo",
"race": "Namekian",
"powerLevel": 7200,
"transformations": [
"Orange Piccolo"
]
},
{
"id": 4,
"name": "Frieza",
"race": "Frieza Race",
"powerLevel": 8500,
"transformations": [
"Golden Frieza",
"Black Frieza"
]
}
]
}
warriors and power levels
GET /dragonball/v1/fighters — List fighters by race or minimum power · Responds with 200 Link to this endpointGET /dragonball/v1/fighters/{id} — Get one fighter · Responds with 200 404 Link to this endpointGET /dragonball/v1/fighters/{id}/transformations — List a fighter’s transformations · Responds with 200 404 Link to this endpointPOST /dragonball/v1/fighters/{id}/power-up — Increase a fighter’s power level (requires Bearer auth) · Responds with 200 422 Link to this endpointbattle simulation
POST /dragonball/v1/tournaments — Resolve a tournament match (requires Bearer auth) · Responds with 201 400 409 Link to this endpointGET /dragonball/v1/tournaments/{id} — Get a tournament match · Responds with 200 404 Link to this endpointLast updated