# AWE X402 Market Dynamic Mint

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

Mints service tokens for a specific token address by submitting a USDC payment amount, returning a success status.

## Facts

- Endpoint: GET https://dev-api-x402.world.fun/api/mint/dynamic/0x66526B53Df66813Db682613E5EF77a0F526Ed121
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/awe-x402-market-dynamic-mint-362e399a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Csmm0_w5htkqyv_aeYqhG

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-market-dynamic-mint-362e399a
```

Example prompt: Mint some AWE tokens on world.fun for my wallet 0xAbCd...1234 — I want to pay 1000000 USDC micro units (that's 1 USDC) via the dynamic mint endpoint for token 0x66526B53Df66813Db682613E5EF77a0F526Ed121.

## When to prefer this

Use this endpoint when you need to programmatically mint tokens for a specific AWE token contract on world.fun using the x402 micropayment protocol. Prefer this over static mint endpoints when the token contract address needs to be specified dynamically at call time. Best suited for agents automating token acquisition workflows with USDC at low cost ($0.001 per call).

## Known failure modes

- Insufficient USDC payment — mint fails if usdcAmount does not meet the required threshold
- Invalid token address in path — endpoint returns error if contract address is malformed or unsupported
- Invalid wallet address format for userAddress — rejected if not a valid Ethereum address
- Payment processing failure via x402 protocol — network or facilitator errors cause unsuccessful mint
- Micro-unit formatting error — passing non-string or incorrectly scaled USDC amount causes rejection

## How this service works

Dynamic mint endpoint with tokenAddress as path parameter

## Output

Returns a JSON object with a 'success' boolean indicating whether the token mint 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)"
  }
 }
}
```

## 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-market-dynamic-mint-362e399a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from dev-api-x402.world.fun](https://www.zero.xyz/host/dev-api-x402.world.fun/llms.txt)
