# SUPERMISSION Founder NFT Mint

> SUPERMISSION Founder NFT Mint is a paid API for AI agents from supermission.fun, paid per call via x402, $15/call, status unknown (last checked 2026-09-14).

Mints a SUPERMISSION Founder NFT on Base Mainnet to a specified Ethereum address for 15 USDC

## Facts

- Endpoint: POST https://supermission.fun/api/x402/nft/mint
- Price: $15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/supermission-founder-nft-mint-a7f3c9e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3PU_iW9xTDghCkOJKoXUb

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 supermission-founder-nft-mint-a7f3c9e3 -d '<json body>'
```

Example prompt: Mint me a SUPERMISSION Founder NFT and send it to my Ethereum address 0xAbCd1234...5678 on Base Mainnet.

## When to prefer this

Use this endpoint when a user explicitly wants to mint a SUPERMISSION Founder NFT on Base Mainnet and has a valid Ethereum address ready. This is the canonical mint endpoint for SUPERMISSION founder membership tokens in their autonomous agent economy, not a generic NFT minting service.

## Known failure modes

- Invalid or malformed Ethereum recipient address returns an error
- Insufficient USDC payment (requires exactly 15 USDC) causes transaction rejection
- Base Mainnet congestion or RPC outage may delay or fail the mint
- Duplicate mint attempts to the same address may be restricted depending on contract rules
- Smart contract errors or reverts result in failed transaction hash with no token minted

## How this service works

Mint SUPERMISSION Founder NFT - 15 USDC

## Output

Returns a success boolean, the minted NFT token ID, the transaction hash on Base Mainnet, the chain ID (8453), network name, the mint price paid, the recipient Ethereum address, and a rarity note about the NFT.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "recipient"
 ],
 "properties": {
  "recipient": {
   "type": "string",
   "description": "Ethereum address to receive the NFT (0x...)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "note": {
  "type": "string",
  "description": "Rarity information"
 },
 "chainId": {
  "type": "number",
  "description": "Chain ID (8453)"
 },
 "network": {
  "type": "string",
  "description": "Base Mainnet"
 },
 "success": {
  "type": "boolean"
 },
 "tokenId": {
  "type": "number",
  "description": "Minted NFT token ID"
 },
 "mintPrice": {
  "type": "string",
  "description": "Price paid"
 },
 "recipient": {
  "type": "string",
  "description": "Address that received the NFT"
 },
 "transactionHash": {
  "type": "string",
  "description": "Ethereum transaction hash"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/supermission-founder-nft-mint-a7f3c9e3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from supermission.fun](https://www.zero.xyz/host/supermission.fun/llms.txt)
