Emoji Oracle
The Emoji Oracle channels the wisdom of the ancients through the modern medium of Unicode pictographs. Submit your deepest questions and receive a prophecy composed entirely of emoji. Optionally request an interpretation, though we cannot guarantee the interpretation will be any clearer than the emojis themselves. The vibe_check field provides our proprietary assessment of the cosmic energy surrounding your query.
Try It — No Seriously
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
question |
string |
Required | — | Your question for the oracle. The oracle does not judge. The oracle only emojis. |
interpret |
boolean |
Optional | false |
Request a human-readable interpretation. 'Human-readable' is generous. |
emoji_count |
number |
Optional | 3 |
Number of emoji in the prophecy (1-5). More emoji = more wisdom. Allegedly. |
Examples
curl "https://api.stupidapis.com/emoji-oracle/consult?question=Should+I+quit+my+job&interpret=true"
import requests
response = requests.get(
"https://api.stupidapis.com/emoji-oracle/consult",
params={"question": "Should I quit my job", "interpret": True}
)
print(response.json())
const response = await fetch( "https://api.stupidapis.com/emoji-oracle/consult?question=Should+I+quit+my+job&interpret=true" ); const data = await response.json(); console.log(data);
Response Schema
| Field | Type | Description |
|---|---|---|
question |
string |
Your original question |
prophecy |
string |
The emoji prophecy. Interpret at your own risk. |
vibe_check |
string |
Overall cosmic vibe: positive, negative, or chaotic |
interpretation conditional |
string |
A questionable interpretation. Only present if interpret=true. |
Example Response
{
"question": "Should I quit my job?",
"prophecy": "๐ฅ๐ผ๐",
"vibe_check": "chaotic",
"interpretation": "The flames consume the briefcase, but celebration follows. The oracle suggests burning bridges leads to parties. This is not career advice."
}