Scream Into The Void
The Scream Into The Void API accepts your scream and returns a random number. The number is not influenced by your scream. The void has heard you. The void is unmoved. The number stands. The intensity parameter lets you express how loudly you are screaming, but the void does not differentiate between a whisper and a howl. All screams are equal in the void.
Try It — No Seriously
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
scream |
string |
Required | — | Your scream. The void accepts all formats. AAAAAA is traditional. |
intensity |
number |
Optional | 5 |
Scream intensity (1-10). Does not affect the result. Affects nothing. |
Examples
curl "https://api.stupidapis.com/scream-void/scream?scream=AAAAAAAAAA&intensity=10"
import requests
response = requests.get(
"https://api.stupidapis.com/scream-void/scream",
params={"scream": "AAAAAAAAAA", "intensity": 10}
)
print(response.json())
const response = await fetch( "https://api.stupidapis.com/scream-void/scream?scream=AAAAAAAAAA&intensity=10" ); const data = await response.json(); console.log(data);
Response Schema
| Field | Type | Description |
|---|---|---|
echo |
string |
What the void echoed back (usually nothing) |
number |
number |
The number the void has chosen for you |
void_status |
string |
Current status of the void |
scream_received |
boolean |
Whether the void received your scream |
emotional_impact |
string |
The emotional impact your scream had on the void |
Example Response
{
"echo": "...",
"number": 42,
"void_status": "Unchanged. The void remains.",
"scream_received": true,
"emotional_impact": "None. The void has heard louder."
}