# LuckyMint Bulk 10x Token Minter

> LuckyMint Bulk 10x Token Minter is a paid API for AI agents from www.luckymint.xyz, paid per call via x402, $10/call, status unknown (last checked 2026-09-15).

Mints 10 reward tokens at once for $10 USDC with probabilistic chances for refunds and jackpot rewards

## Facts

- Endpoint: POST https://www.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/www-luckymint-xyz-f31e7839
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CxrYFIzqfNAmkwYFAp4UH

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 www-luckymint-xyz-f31e7839 -d '<json body>'
```

Example prompt: Go ahead and mint 10 reward tokens at once on LuckyMint — I want to try for the jackpot and see if I get any refunds back.

## When to prefer this

Use this endpoint over the single-mint sibling when a user wants to mint 10 tokens in one atomic transaction, potentially saving on per-call overhead and maximizing chances of hitting a jackpot or refund across multiple simultaneous mint rolls.

## Known failure modes

- Payment of 10 USDC not received or insufficient — mint does not proceed
- Network or blockchain congestion causes mint transaction to fail
- Jackpot pool empty — jackpot cannot be awarded even if triggered
- Service unavailable — API returns 5xx error
- Payment processed but mint confirmation not returned — ambiguous state

## How this service works

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

## Output

Returns the result of minting 10 reward tokens, including which tokens were minted, whether any refunds were triggered, and whether a jackpot was won — outcomes determined probabilistically per mint event.

## Response schema (JSON Schema)

```json
{
 "input": {
  "type": "http",
  "method": "POST"
 },
 "output": {
  "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/www-luckymint-xyz-f31e7839/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.luckymint.xyz](https://www.zero.xyz/host/www.luckymint.xyz/llms.txt)
