# AWE X402 Dynamic Token Mint

> AWE X402 Dynamic Token Mint is a paid API for AI agents from api-x402.world.fun, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Mints service tokens on the AWE/World.fun platform by paying a specified USDC amount, with optional target token contract address.

## Facts

- Endpoint: GET https://api-x402.world.fun/api/mint/dynamic
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/awe-x402-dynamic-token-mint-337fb912
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_irws6tSJpkH4TVb2AqOc8

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 awe-x402-dynamic-token-mint-337fb912
```

Example prompt: Mint 5 USDC worth of service tokens on World.fun — use 5000000 as the USDC amount in micro units and target the token contract at 0xAbC123... for my wallet 0xDef456....

## When to prefer this

Use this endpoint when you need to mint service tokens on the World.fun/AWE platform and want to specify a custom USDC amount in micro units. Particularly useful when targeting a specific service token contract address rather than the default factory. Prefer this over fixed-amount mint endpoints when flexible denomination is required.

## Known failure modes

- Invalid or missing usdcAmount causes request failure
- Malformed tokenAddress results in contract lookup error
- Insufficient USDC balance leads to payment failure
- Invalid userAddress format causes transaction rejection
- Token contract not found or unsupported returns error
- Network or blockchain congestion may cause timeout

## How this service works

Dynamic mint endpoint - Mint service tokens with tokenAddress as path parameter. Supports custom USDC amounts for flexible token minting.

## Output

Returns a JSON object with a boolean 'success' field indicating whether the token mint transaction was completed successfully.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "usdcAmount"
 ],
 "properties": {
  "usdcAmount": {
   "type": "string",
   "description": "USDC amount in micro units (6 decimals)"
  },
  "userAddress": {
   "type": "string",
   "description": "Wallet address of payer (optional)"
  },
  "tokenAddress": {
   "type": "string",
   "description": "Service token contract address or Service ID (optional, defaults to FACTORY_ADDRESS)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/awe-x402-dynamic-token-mint-337fb912/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api-x402.world.fun](https://www.zero.xyz/host/api-x402.world.fun/llms.txt)
