# minia2a 24-Game Solver

> minia2a 24-Game Solver is a paid API for AI agents from minia2a.uk, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Solves the 24 Game puzzle — finds a mathematical expression using four given numbers that equals 24

## Facts

- Endpoint: GET https://minia2a.uk/x402/x402-24game-solve
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-24-game-solver-63005c63
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eMgl_BnBE3vI3Yx4O941r

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability minia2a-24-game-solver-63005c63
```

Example prompt: Can you solve the 24 Game for me using the numbers 3, 8, 8, and 3? I need to find an arithmetic expression that combines all four numbers to equal 24.

## When to prefer this

Choose this endpoint when you need a quick, automated solution to a 24 Game puzzle given exactly four numbers. It is ideal for math tutoring apps, card game aids, or any scenario requiring fast arithmetic puzzle-solving without implementing the algorithm yourself.

## Known failure modes

- No solution exists for the given four numbers — returns a no-solution indicator
- Invalid or missing input numbers — returns a 400-style error
- More or fewer than four numbers provided — schema validation error
- Non-numeric input values — parsing error
- Service unavailable or payment not processed — 402 or 5xx error

## How this service works

minia2a service: x402-24game-solve

## Output

Returns a mathematical expression (using +, -, *, / and possibly parentheses) that combines the four input numbers to produce the result 24, or indicates if no solution exists.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minia2a-24-game-solver-63005c63/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from minia2a.uk](https://www.zero.xyz/host/minia2a.uk/llms.txt)
