# BaseTomcat Mint Experience Tier (50 TOM)

> BaseTomcat Mint Experience Tier (50 TOM) is a paid API for AI agents from basetomcat.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Mints 50 TOM tokens (experience tier) to a wallet address on Base for 0.01 USDC via x402 payment.

## Facts

- Endpoint: POST https://basetomcat.com/api/mint-experience
- 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/basetomcat-com-2c612341
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b_z3agB-OStZn3uk8AWX8

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 basetomcat-com-2c612341 -d '<json body>'
```

Example prompt: Mint me the experience tier of 50 TOM tokens on BaseTomcat — the 0.01 USDC option — and send them to my wallet.

## When to prefer this

Choose this endpoint when you need the smallest, cheapest denomination of TOM tokens (50 TOM for 0.01 USDC) — ideal for onboarding, testing, or experience-tier access on the Base network. Use the standard or large tier siblings if you need 5,000 or 25,000 TOM instead.

## Known failure modes

- Missing or invalid X-PAYMENT header returns payment required error
- Insufficient USDC balance causes payment failure
- Network congestion on Base may result in pending/processing status delay
- Invalid payer address override causes request rejection
- Smart contract error results in failed status with no txHash

## How this service works

Buy 50 TOM (experience tier) for 0.01 USDC on Base.

## Output

Returns a task ID, the number of TOM tokens minted (50), the recipient wallet address, a Basescan transaction hash, the TomCat contract address, and a status field (pending/processing/completed/failed) indicating the mint's progress.

## Response schema (JSON Schema)

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "headerFields": {
   "X-PAYMENT": {
    "type": "string",
    "required": true,
    "description": "x402 payment header returned by createPaymentHeader"
   },
   "X-PAYMENT-PAYER": {
    "type": "string",
    "description": "Optional payer address override"
   }
  }
 },
 "output": {
  "type": "object",
  "properties": {
   "amount": {
    "type": "number",
    "description": "Number of TOM tokens minted"
   },
   "result": {
    "type": "object",
    "properties": {
     "txHash": {
      "type": "string",
      "description": "Basescan transaction hash"
     },
     "tokenAddress": {
      "type": "string",
      "description": "TomCat contract address"
     }
    }
   },
   "status": {
    "enum": [
     "pending",
     "processing",
     "completed",
     "failed"
    ],
    "type": "string"
   },
   "taskId": {
    "type": "string",
    "description": "Queue task identifier"
   },
   "recipientAddress": {
    "type": "string"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/basetomcat-com-2c612341/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from basetomcat.com](https://www.zero.xyz/host/basetomcat.com/llms.txt)
