Fake Conference Talk
The Fake Conference Talk API generates a complete CFP submission per call. Includes a tech-conference-coded title, abstract, speaker bio, proposed track, runtime, and which conference rejected it. Acceptance likelihood is always low.
Try It — No Seriously
Parameters
| Parameter | Type | Required | Default | Description |
|---|
Examples
curl "https://api.stupidapis.com/fake-conference-talk/cfp"
import requests
response = requests.get("https://api.stupidapis.com/fake-conference-talk/cfp")
print(response.json())
const response = await fetch("https://api.stupidapis.com/fake-conference-talk/cfp");
const data = await response.json();
console.log(data);
Response Schema
| Field | Type | Description |
|---|---|---|
title |
string |
The talk title |
abstract |
string |
CFP abstract |
speaker_bio |
string |
A bio |
proposed_track |
string |
Where it would go |
duration_minutes |
number |
Runtime |
rejected_from |
string |
Which conference passed |
acceptance_likelihood |
string |
Always low |
Example Response
{
"title": "How I Refactored My Monorepo on a Boat",
"abstract": "In this talk, I will show you a thing that worked once and explain why it should not have. Lessons include: most of them.",
"speaker_bio": "staff engineer at a company you have heard of",
"proposed_track": "main stage",
"duration_minutes": 30,
"rejected_from": "KubeCon main stage",
"acceptance_likelihood": "low"
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidapis.com/fake-conference-talk/mcp
POST https://api.stupidapis.com/mcp
Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.