# X404 Token Mint

> X404 Token Mint is a paid API for AI agents from x404.page, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Mints X404 meme tokens by processing a USDC payment via the x402 protocol

## Facts

- Endpoint: POST https://x404.page/api/mint
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x404-token-mint-d77625c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ggqls0niYirAxfY5hljkb

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 x404-token-mint-d77625c6 -d '<json body>'
```

Example prompt: Buy me 1.5 USDC worth of X404 meme tokens using the x402 mint endpoint on x404.page.

## When to prefer this

Use this endpoint when you specifically want to mint or purchase X404 meme tokens using USDC via the x402 payment protocol. This is the only known mint endpoint for X404 tokens on x404.page.

## Known failure modes

- Payment amount missing or malformed — returns validation error
- Insufficient USDC balance — payment fails before mint
- x402 payment protocol error — transaction not authorized
- Smart contract or on-chain error — txHash may be absent, success=false
- Network timeout — no response or partial response

## How this service works

Payment required to purchase X404 tokens

## Output

Returns a transaction hash, a confirmation message, and a boolean success flag indicating whether the X404 token mint was successfully processed on-chain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "amount"
 ],
 "properties": {
  "amount": {
   "type": "string",
   "description": "Payment amount in USDC (e.g., 1.5)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "txHash": "string",
 "message": "string",
 "success": "boolean"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x404-token-mint-d77625c6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x404.page](https://www.zero.xyz/host/x404.page/llms.txt)
