Press Release Generator
The Press Release Generator takes any announcement — no matter how trivial — and transforms it into a press release of considerable gravity. Choose your tone (visionary, disrupting, humbled, transparent, or pivoting) and receive a full press release with headline, subheadline, executive quote, and About section. The API also tells you how many workshops this required, how many stakeholders were aligned, and the probability of press pickup (always 0%).
Try It — No Seriously
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
announcement |
string |
Required | — | What you're announcing. We'll make it sound important. |
company |
string |
Optional | "The Company" |
Company name. |
tone |
string |
Optional | "visionary" |
Press release tone. |
location |
string |
Optional | "SAN FRANCISCO, CA" |
Dateline location. |
Examples
curl "https://api.stupidapis.com/press-release/generate?announcement=We+changed+our+logo&company=Acme+Corp&tone=visionary"
import requests
response = requests.get(
"https://api.stupidapis.com/press-release/generate",
params={"announcement": "We changed our logo", "company": "Acme Corp", "tone": "visionary"}
)
print(response.json())
const response = await fetch( "https://api.stupidapis.com/press-release/generate?announcement=We+changed+our+logo&company=Acme+Corp&tone=visionary" ); const data = await response.json(); console.log(data);
Response Schema
| Field | Type | Description |
|---|---|---|
press_release |
string |
The full press release with all sections |
actual_news_value |
string |
Always 'none' |
workshops_this_required |
number |
How many workshops produced this (2-6) |
stakeholders_aligned |
number |
Stakeholders involved (12-40) |
press_pickup_probability |
string |
Always 0% |
Example Response
{
"press_release": "ACME CORP UNVEILS BOLD NEW VISUAL IDENTITY, SIGNALING NEXT CHAPTER OF INNOVATION\n\nNew logo reflects company's commitment to forward-thinking design and stakeholder value\n\nSAN FRANCISCO, CA — Acme Corp today announced a transformative update to its visual identity...",
"actual_news_value": "none",
"workshops_this_required": 4,
"stakeholders_aligned": 27,
"press_pickup_probability": "0%"
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidapis.com/press-release/mcp
POST https://api.stupidapis.com/mcp
Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.