Breakup Text Generator

⚡ Generators 🌭🌭 Medium 955 calls

The Breakup Text Generator API drafts a breakup text per call in one of five styles. Cowardly is unsigned and apologetic. Dramatic is theatrical. Corporate-PR sounds like a press release. Haiku is three lines. Honest is short and clear. Each ships with a send note and a response forecast. Some asks include "do you have to send this": often yes, often no.

Try It — No Seriously

Breakup Text Generator.exe
_ ×
Drafting style.

Parameters

Parameter Type Required Default Description
style string Optional honest Drafting style.

Examples

curl "https://api.stupidapis.com/breakup-text-generator/draft?style=haiku"
import requests

response = requests.get(
    "https://api.stupidapis.com/breakup-text-generator/draft",
    params={"style": "haiku"}
)
print(response.json())
const response = await fetch(
  "https://api.stupidapis.com/breakup-text-generator/draft?style=haiku"
);
const data = await response.json();
console.log(data);

Response Schema

Field Type Description
style string Style used
text string The draft
send_note string Sending guidance
response_forecast string What they will do
estimated_message_count_after number Likely follow-up count
do_you_have_to_send_this string yes / no

Example Response

{
  "style": "haiku",
  "text": "The leaves know to fall.\nWe were a kind of weather.\nIt is no longer.",
  "send_note": "do not explain the haiku",
  "response_forecast": "they will reply with one word. it will be the word.",
  "estimated_message_count_after": 3,
  "do_you_have_to_send_this": "yes"
}

MCP Access

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

POST https://api.stupidapis.com/breakup-text-generator/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