Data
Random yes/no oracle (yesno.wtf) API
Return a random yes / no / maybe answer with a matching reaction GIF from yesno.wtf, a coin-flip decision oracle. Answers 'should I do X','yes or no','flip a decision for me','give me a random yes/no'.
Price$0.01per request
MethodPOST
Route/v1/data/misc-yes-no
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
datayes-nodecisionoraclerandomyesnowtfcoin-flipfun
API URL
Integration docshttps://x402.hexl.dev/v1/data/misc-yes-noExample request
{
"question": "Should I deploy on Friday?"
}Example response
{
"question": "Should I deploy on Friday?",
"answer": "no",
"isYes": false,
"forced": false,
"gifUrl": "https://yesno.wtf/assets/no/2.gif"
}Input schema
{
"type": "object",
"required": [],
"properties": {
"question": {
"type": "string",
"examples": [
"Should I deploy on Friday?"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}