# Capminal Flash Clanker Token Deployment

> Capminal Flash Clanker Token Deployment is a paid API for AI agents from www.capminal.ai, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Deploys a new Clanker token on-chain with specified name, symbol, market cap, and owner address, returning the token contract address and transaction hash.

## Facts

- Endpoint: POST https://www.capminal.ai/api/x402/deploy
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/capminal-flash-clanker-token-deployment-fcb9ab60
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xz9SiwbEBblDYD0WFE5jM

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 capminal-flash-clanker-token-deployment-fcb9ab60 -d '<json body>'
```

Example prompt: Deploy a new Clanker token called 'MoonDoge' with symbol 'MDOGE' on Base (chainId 8453), set the initial market cap to 10000 USDC, use my wallet address 0xAbc123...def456 as the owner, and use this image: https://example.com/moondoge.png.

## When to prefer this

Use this endpoint when you need to programmatically deploy a new Clanker token on a supported EVM chain with a defined market cap and owner. Prefer this over generic token factory contracts when you want a managed, API-driven deployment with an explorer link returned automatically.

## Known failure modes

- Invalid or unsupported chainId returns an error
- Missing required fields (name, symbol, chainId, marketCap, ownerAddress) causes validation failure
- Insufficient USDC payment (requires $0.50) results in payment error
- Invalid owner wallet address format causes rejection
- Network congestion may delay transaction confirmation
- Duplicate token symbol on the same chain may be rejected

## How this service works

Flash Clanker Token Deployment API

## Output

Returns a success flag, the deployed token's contract address, its metadata (name, symbol, chainId, marketCap, ownerAddress, imageUrl, fee), a transaction hash, and a block explorer URL to verify the on-chain deployment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "fee",
  "name",
  "symbol",
  "chainId",
  "marketCap",
  "ownerAddress"
 ],
 "properties": {
  "fee": {
   "type": "string"
  },
  "name": {
   "type": "string"
  },
  "symbol": {
   "type": "string"
  },
  "chainId": {
   "type": "string"
  },
  "imageUrl": {
   "type": "string"
  },
  "marketCap": {
   "type": "string"
  },
  "description": {
   "type": "string"
  },
  "ownerAddress": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "notes": {
     "type": "string"
    },
    "token": {
     "type": "object",
     "properties": {
      "fee": {
       "type": "string"
      },
      "name": {
       "type": "string"
      },
      "symbol": {
       "type": "string"
      },
      "address": {
       "type": "string"
      },
      "chainId": {
       "type": "string"
      },
      "imageUrl": {
       "type": "string"
      },
      "marketCap": {
       "type": "string"
      },
      "ownerAddress": {
       "type": "string"
      }
     }
    },
    "transaction": {
     "type": "object",
     "properties": {
      "txHash": {
       "type": "string"
      },
      "explorerUrl": {
       "type": "string"
      }
     }
    }
   }
  },
  "message": {
   "type": "string"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/capminal-flash-clanker-token-deployment-fcb9ab60/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.capminal.ai](https://www.zero.xyz/host/www.capminal.ai/llms.txt)
