Mercury Placement Number

🎲 Randomness Generators 🌭🌭 Medium 1,543 calls

The Mercury Placement Number API generates a random number justified by Mercury's current position in the sky. Mercury is always in something. Today that something has produced this number. When Mercury is in retrograde, the number may arrive late, corrupted, or addressed to someone else. The planet was not consulted and does not endorse this API.

Try It — No Seriously

Mercury Placement Number.exe
_ ×
Your zodiac sign. Doesn't change the number. Makes us feel better about it.

Parameters

Parameter Type Required Default Description
sign string Optional Your zodiac sign. Doesn't change the number. Makes us feel better about it.

Examples

curl "https://api.stupidapis.com/mercury-number/generate?sign=gemini"
import requests

response = requests.get(
    "https://api.stupidapis.com/mercury-number/generate",
    params={"sign": "gemini"}
)
print(response.json())
const response = await fetch(
  "https://api.stupidapis.com/mercury-number/generate?sign=gemini"
);
const data = await response.json();
console.log(data);

Response Schema

Field Type Description
number number Your Mercury-derived random number
mercury_position string Mercury's current zodiac position
retrograde boolean Whether Mercury is in retrograde
justification string Why Mercury produced this specific number

Example Response

{
  "number": 42,
  "mercury_position": "Mercury in Gemini",
  "retrograde": false,
  "justification": "Mercury is in Gemini, the sign of communication and duality. The number 42 reflects the dual nature of your inquiry. Also, it's the answer to everything."
}
...
Clippy