# LuckyMint Batch 10x Lottery Mint on Base

> LuckyMint Batch 10x Lottery Mint on Base is a paid API for AI agents from luckymint.xyz, paid per call via x402, $10/call, status unknown (last checked 2026-09-15).

Mints 10 reward tokens at once on the Base blockchain, each with independent chances of refunds or jackpot wins

## Facts

- Endpoint: POST https://luckymint.xyz/api/mint10x
- Price: $10/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/luckymint-batch-10x-lottery-mint-on-base-03d352de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vw-XfhyOO73HDpltGz7Vb

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 luckymint-batch-10x-lottery-mint-on-base-03d352de -d '<json body>'
```

Example prompt: Play LuckyMint for me using the 10x batch mint — I want to try all 10 spins at once for the best shot at the jackpot and any refund bonuses.

## When to prefer this

Choose this endpoint over the single-mint sibling when you want 10 lottery attempts in one transaction, reducing per-mint overhead and maximizing chances of hitting a jackpot or refund bonus in a single call. Prefer when cost efficiency per attempt matters and the user has 10 USDC to spend at once.

## Known failure modes

- Insufficient USDC balance — payment of exactly 10 USDC required
- Payment protocol failure — x402 payment not accepted or malformed
- Blockchain congestion — transaction may fail or time out on Base network
- Smart contract error — mint function reverts due to onchain conditions
- No jackpot won — all 10 results return jackpotWon: false (not an error, just bad luck)
- Invalid request body — missing required fields cause 400 error

## How this service works

🎰 LuckyMint: Mint 10 reward tokens at once with chances for refunds and jackpots!

## Output

Returns a success flag, a blockchain transaction hash, and an array of 10 individual mint results each containing a random seed, mint ID, number of tokens received, whether a refund bonus was granted, and whether a jackpot was won (including the jackpot amount if applicable).

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success",
  "transactionHash",
  "results"
 ],
 "properties": {
  "results": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "seed": {
      "type": "string",
      "description": "Random seed used for the mint"
     },
     "mintId": {
      "type": "number",
      "description": "Unique mint ID"
     },
     "tokens": {
      "type": "string",
      "description": "Number of tokens received"
     },
     "refunded": {
      "type": "boolean",
      "description": "Whether a bonus refund was given"
     },
     "jackpotWon": {
      "type": "boolean",
      "description": "Whether the jackpot was won"
     },
     "jackpotAmount": {
      "type": "string",
      "description": "Jackpot amount if won"
     }
    }
   },
   "description": "Array of individual mint results"
  },
  "success": {
   "type": "boolean",
   "description": "Whether the batch mint was successful"
  },
  "transactionHash": {
   "type": "string",
   "description": "Blockchain transaction hash"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/luckymint-batch-10x-lottery-mint-on-base-03d352de/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from luckymint.xyz](https://www.zero.xyz/host/luckymint.xyz/llms.txt)
