# PingPong.fun PONKY Token Minter

> PingPong.fun PONKY Token Minter is a paid API for AI agents from pingpong.fun, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Mints PONKY tokens on-chain by accepting a USDC payment, returning the transaction hash and minted token amount

## Facts

- Endpoint: GET https://pingpong.fun/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/pingpong-fun-ponky-token-minter-7a912c4e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GOJDkLxvhhnvVQlaqwVl9

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 pingpong-fun-ponky-token-minter-7a912c4e
```

Example prompt: Mint me some PONKY tokens on PingPong.fun — I want to spend 1 USDC.

## When to prefer this

Use this endpoint when you specifically want to mint PONKY tokens on PingPong.fun using USDC via the x402 payment protocol. It is the canonical minting interface for this token launchpad and handles on-chain token issuance atomically with payment. Choose one of the supported discrete USDC amounts (0.0001, 0.01, 1, 10, 100).

## Known failure modes

- Invalid USDC amount (not one of 0.0001, 0.01, 1, 10, 100) — returns error or failed success flag
- Insufficient USDC balance or payment failure — transaction not processed
- Network congestion or blockchain error — txHash may be null or missing
- x402 payment protocol misconfiguration — payment not recognized
- Smart contract error — minting fails on-chain even if payment succeeds

## How this service works

Mint PONKY tokens. Pay 1 USDC to receive tokens instantly. Supported amounts: 0.0001, 0.01, 1, 10, 100 USDC.

## Output

Returns a JSON object with a boolean success flag, the on-chain transaction hash (txHash), a human-readable message, and the amount of PONKY tokens minted (mintedAmount) for the given USDC spend.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "amount": {
   "type": "USDC amount to spend (0.0001, 0.01, 1, 10, 100)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "txHash": {
   "type": "string",
   "description": "Transaction hash"
  },
  "message": {
   "type": "string"
  },
  "success": {
   "type": "boolean"
  },
  "mintedAmount": {
   "type": "string",
   "description": "Amount of tokens minted"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pingpong-fun-ponky-token-minter-7a912c4e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pingpong.fun](https://www.zero.xyz/host/pingpong.fun/llms.txt)
