# minia2a 2048 Move Solver

> minia2a 2048 Move 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).

Computes the next optimal move for a 2048 puzzle board state

## Facts

- Endpoint: GET https://minia2a.uk/x402/2048-move
- 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-2048-move-solver-a391e22f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Uy60-ZrpawE-axhM79-SN

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-2048-move-solver-a391e22f
```

Example prompt: Given my current 2048 board state, compute the best next move I should make to maximize my score and keep the game alive.

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call computation of the next move in a 2048 puzzle. It is ideal for agents building 2048 game automation, AI players, or training tools where game board state is available as a query parameter and a fast directional move recommendation is needed.

## Known failure modes

- Missing or malformed board state in queryParams returns an error
- Invalid move type or method parameter causes a bad request
- Payment not fulfilled results in 402 response blocking access
- Ambiguous or unsolvable board state may return unexpected move or error

## How this service works

minia2a service: x402-2048-move

## Output

Returns the computed optimal move recommendation for the given 2048 board state, indicating the direction or action the player should take next.

## 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-2048-move-solver-a391e22f/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)
