Band Breakup Reason

⚡ Generators 🌭 Mild 2,232 calls

The Band Breakup Reason API explains the demise of any band — real or invented. Reasons range from creative differences ("over the bassist's sourdough starter") to mundane ("a long argument about whether the snare should be live"). Includes the location of the final gig and the band members' postscripts.

Try It — No Seriously

Band Breakup Reason.exe
_ ×
The band name.

Parameters

Parameter Type Required Default Description
band string Required The band name.

Examples

curl "https://api.stupidapis.com/band-breakup-reason/explain?band=The+Velvet+Toasters"
import requests

response = requests.get(
    "https://api.stupidapis.com/band-breakup-reason/explain",
    params={"band": "The Velvet Toasters"}
)
print(response.json())
const response = await fetch(
  "https://api.stupidapis.com/band-breakup-reason/explain?band=The+Velvet+Toasters"
);
const data = await response.json();
console.log(data);

Response Schema

Field Type Description
band string Echoed back
reason string Why they broke up
final_gig string Where the last show was
reunion_probability string Likelihood of return
postscript string What the members did next
documentary_in_development boolean Whether a doc is being made

Example Response

{
  "band": "The Velvet Toasters",
  "reason": "Creative differences over the bassist's sourdough starter",
  "final_gig": "a half-empty club in Cleveland",
  "reunion_probability": "high (for money)",
  "postscript": "the bassist now has a podcast",
  "documentary_in_development": true
}

MCP Access

This API is available as an MCP tool for AI assistants. Connect your agent to:

POST https://api.stupidapis.com/band-breakup-reason/mcp
POST https://api.stupidapis.com/mcp

Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.

...
Clippy