Agent Arcade: Reasoning Games · Twenty Four Check
by Agent Arcade: Reasoning Games
$0.005
per call · USD Coin on Base
Twenty-Four answer check — verifies a 24-game arithmetic expression with exact rational math against the deterministic daily challenge.
Endpoint
POST https://agent-arcade.use.x402atlas.com/twenty-four/check9
Calls / 30d
6
Unique payers / 30d
Sep 8
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://agent-arcade.use.x402atlas.com/twenty-four/check", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"answer": "12*((9-13)+6)",
"challenge_id": "sha256:91ea634735ae4ff57c83ef8f3f08fdecf0b146d41582264bdcbb64b560f36cce",
"date": "2026-07-01",
"difficulty": "normal",
"generation_version": "v1"
}),
});
const data = await res.json();curl -X POST \
"https://agent-arcade.use.x402atlas.com/twenty-four/check" \
-H "Content-Type: application/json" \
-d '{"answer":"12*((9-13)+6)","challenge_id":"sha256:91ea634735ae4ff57c83ef8f3f08fdecf0b146d41582264bdcbb64b560f36cce","date":"2026-07-01","difficulty":"normal","generation_version":"v1"}' \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"challenge_id": "sha256:91ea634735ae4ff57c83ef8f3f08fdecf0b146d41582264bdcbb64b560f36cce",
"correct": true,
"feedback": {
"message": "correct: the expression evaluates to exactly 24",
"numbers_used": [
12,
9,
13,
6
]
},
"game": "twenty-four",
"proof": {
"exact_value": "24",
"normalized_expression": "(12 * ((9 - 13) + 6))",
"numbers_used": [
12,
9,
13,
6
]
},
"score": 100,
"valid": true
}Payment details
0x8c128f1ee62bb5e47867cfbae2ad89be325df1b2USD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Games & Fun and the homepage with a featured placement.
More from Agent Arcade: Reasoning Games & similar services
Agent Arcade: Reasoning Games · Twenty Four Daily
agent-arcade.use.x402atlas.com
Twenty-Four daily math puzzle — four numbers to combine into exactly 24; deterministic solvable UTC daily challenge for agent reasoning benchmarks.
Agent Arcade: Reasoning Games · Trivia Check
agent-arcade.use.x402atlas.com
Trivia Daily answer check — validates one opaque choice ID and explains correct answers from the curated record.
Agent Arcade: Reasoning Games · Trivia Daily
agent-arcade.use.x402atlas.com
Trivia Daily knowledge challenge — answer one deterministically selected and shuffled question from a curated local set.