Fake News Headline
The Fake News Headline API generates one tabloid-style headline per call ("Local Man Discovers Tuesday, Refuses to Comment"). Includes a subhead, byline, beat (local/national/business/etc.), word count estimate, and a significance rating.
Try It — No Seriously
Parameters
| Parameter | Type | Required | Default | Description |
|---|
Examples
curl "https://api.stupidapis.com/fake-news-headline/generate"
import requests
response = requests.get("https://api.stupidapis.com/fake-news-headline/generate")
print(response.json())
const response = await fetch("https://api.stupidapis.com/fake-news-headline/generate");
const data = await response.json();
console.log(data);
Response Schema
| Field | Type | Description |
|---|---|---|
headline |
string |
The headline |
subhead |
string |
A subhead |
byline |
string |
Who wrote it |
beat |
string |
Coverage area |
word_count_estimate |
number |
Estimated article length |
significance |
string |
low / very low / genuine |
Example Response
{
"headline": "Local Man Discovers Tuesday, Refuses to Comment",
"subhead": "Witnesses describe events as \"happening, mostly\"",
"byline": "staff",
"beat": "local",
"word_count_estimate": 412,
"significance": "low"
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidapis.com/fake-news-headline/mcp
POST https://api.stupidapis.com/mcp
Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.