# 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 on the AWE X402 marketplace for a specified USDC amount, optionally targeting a specific token contract address.

## Facts

- Endpoint: GET https://dev-api-x402.world.fun/api/mint/dynamic
- 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-2eae12b1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F3YtCKkUBjyhLdVp2WRRG

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-2eae12b1
```

Example prompt: Mint me some AWE service tokens on the X402 market using 1000000 USDC micro units (that's 1 USDC) for token contract address 0xAbC123... and attribute it to my wallet 0xDef456...

## When to prefer this

Use this endpoint when you need to dynamically mint service tokens on the AWE X402 marketplace with a flexible USDC amount, especially when you need to target a specific token contract address or service ID. Prefer this over static mint endpoints when the token address or USDC amount varies per request.

## Known failure modes

- Invalid usdcAmount format or insufficient USDC — returns success: false
- Invalid tokenAddress or service ID — token not found or minting fails
- Wallet address malformed — payment attribution fails
- Payment not received via x402 protocol — request rejected before minting
- Network or smart contract error — mint transaction reverts

## 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 successfully initiated.

## 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-market-dynamic-mint-2eae12b1/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)
