Fake Warning Label
The Fake Warning Label API returns one warning label per call. Includes header (WARNING/CAUTION/etc.), symbol, the warning itself ("May contain trace amounts of regret"), three precautions, jurisdiction note, and certification.
Try It — No Seriously
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
object |
string |
Required | — | The object being labeled. |
Examples
curl "https://api.stupidapis.com/fake-warning-label/label?object=ceiling+fan"
import requests
response = requests.get("https://api.stupidapis.com/fake-warning-label/label", params={"object": "ceiling fan"})
print(response.json())
const response = await fetch("https://api.stupidapis.com/fake-warning-label/label?object=ceiling+fan");
const data = await response.json();
Response Schema
| Field | Type | Description |
|---|---|---|
object |
string |
Echoed back |
symbol |
string |
Warning symbol |
header |
string |
Header text |
warning |
string |
The warning |
precautions |
string[] |
Three precautions |
jurisdiction |
string |
Where it applies |
certification |
string |
Certification |
Example Response
{
"object": "ceiling fan",
"symbol": "⚠",
"header": "WARNING",
"warning": "Do not dream within 4 feet of this device.",
"precautions": [
"wear protective eyewear",
"keep away from children, pets, and electricians",
"consult a professional, but not the kind that would help"
],
"jurisdiction": "Permitted in 47 of 50 states",
"certification": "Self-certified"
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidapis.com/fake-warning-label/mcp
POST https://api.stupidapis.com/mcp
Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.