Dream Interpreter
The Dream Interpreter API returns a generic but confident interpretation of any dream. Includes a primary symbol reading, a Freudian-style sentence about what you are processing, a recommendation, a disclaimer, and a recurrence likelihood. The interpretation does not actually read your dream.
Try It — No Seriously
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
dream |
string |
Required | — | The dream, in your own words. |
Examples
curl -X POST "https://api.stupidapis.com/dream-interpreter/interpret" -H "Content-Type: application/json" -d '{"dream":"i was a sandwich and the sandwich was on fire"}'
import requests
response = requests.post(
"https://api.stupidapis.com/dream-interpreter/interpret",
json={"dream": "i was a sandwich and the sandwich was on fire"}
)
print(response.json())
const response = await fetch(
"https://api.stupidapis.com/dream-interpreter/interpret",
{ method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ dream: "i was a sandwich and the sandwich was on fire" }) }
);
const data = await response.json();
console.log(data);
Response Schema
| Field | Type | Description |
|---|---|---|
dream |
string |
Echoed back |
primary_symbol_interpretation |
string |
Reading of the central symbol |
freudian_reading |
string |
Freud-flavored sentence |
recommendation |
string |
A small action |
disclaimer |
string |
About the reading |
recurrence_likely |
boolean |
Will you have it again |
Example Response
{
"dream": "i was a sandwich and the sandwich was on fire",
"primary_symbol_interpretation": "The central object represents your unresolved tax debt.",
"freudian_reading": "You are processing a desire you have not named.",
"recommendation": "eat protein",
"disclaimer": "this interpretation is non-binding",
"recurrence_likely": true
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidapis.com/dream-interpreter/mcp
POST https://api.stupidapis.com/mcp
Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.