# Flaunch Memecoin Launch via x402

> Flaunch Memecoin Launch via x402 is a paid API for AI agents from x402.flaunch.gg, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Launches a new Base-chain memecoin on Flaunch after a $1.00 USDC x402 anti-spam payment, returning the deployed token contract details.

## Facts

- Endpoint: POST https://x402.flaunch.gg/launch
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/flaunch-memecoin-launch-via-x402-8be02393
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pIJbTSJcPaXES1Y0jryt6

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 flaunch-memecoin-launch-via-x402-8be02393 -d '<json body>'
```

Example prompt: Launch a memecoin on Flaunch called 'PepeCat' with ticker PCAT — here's the description: 'The internet's favorite cat-frog hybrid coin' — use this PNG image I'll attach, and attribute it to my wallet 0xAbCd1234AbCd1234AbCd1234AbCd1234AbCd1234.

## When to prefer this

Choose this endpoint when you need to programmatically launch a new memecoin on the Base blockchain via the Flaunch platform with a $1 anti-spam gate. It is ideal for agents automating community token launches, creator coin deployments, or any workflow that requires on-chain token creation with custom name, symbol, image, and creator attribution. The idempotency key makes it safe for retry-prone agentic workflows. Prefer this over generic token deployment tools when you specifically want a Flaunch-listed token on Base.

## Known failure modes

- Payment failure: x402 payment of $1.00 USDC not completed or rejected — token is not launched
- 409 Conflict: idempotency key reused with a different payload — returns conflict error
- 422 Validation error: name exceeds 32 chars, symbol exceeds 10 chars, description exceeds 255 chars, or image exceeds 5MB or is an unsupported format
- Invalid creatorAddress: EVM address does not match 0x + 40 hex chars pattern
- Image encoding error: imageBase64 is not a valid base64 data URL
- Rate limit or network error on Base chain deployment

## How this service works

Launch a Base memecoin via Flaunch after a $1.00 x402 anti-spam payment.

## Output

On success (HTTP 202), the agent receives confirmation of the launched token including the deployed contract address on Base, a transaction hash, and a link to the Flaunch listing page. If the same idempotency key is reused with the same payload, the original response is returned without re-charging. A 409 is returned if the idempotency key is reused with a different payload.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string",
   "maxLength": 32,
   "minLength": 1,
   "description": "Token name shown on the launch."
  },
  "symbol": {
   "type": "string",
   "maxLength": 10,
   "minLength": 1,
   "description": "Token ticker symbol."
  },
  "description": {
   "type": "string",
   "maxLength": 255,
   "minLength": 1,
   "description": "Token description."
  },
  "imageBase64": {
   "type": "string",
   "minLength": 1,
   "description": "Base64 data URL of the token image, e.g. 'data:image/png;base64,iVBORw0KG...'. Supported formats: PNG, JPEG, GIF, WEBP. Max 5MB raw bytes."
  },
  "creatorAddress": {
   "type": "string",
   "pattern": "^0x[a-fA-F0-9]{40}$",
   "description": "EVM address attributed as the token creator on Flaunch."
  },
  "idempotencyKey": {
   "type": "string",
   "maxLength": 120,
   "minLength": 1,
   "description": "Agent-chosen idempotency token (UUID/ULID recommended). Reused with the same payload, returns the original 202 without re-charging. Reused with a different payload, returns 409."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/flaunch-memecoin-launch-via-x402-8be02393/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.flaunch.gg](https://www.zero.xyz/host/x402.flaunch.gg/llms.txt)
