# 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-13).

Mints service tokens for a specific token contract address by accepting a USDC amount, returning a success confirmation

## Facts

- Endpoint: GET https://dev-api-x402.world.fun/api/mint/dynamic/0xB07934A40d0cbEE28015729B28987f292F250ee0
- 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-market-dynamic-mint-01ef9c37
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xjjW_9UskIwAs1Y7esE_2

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-01ef9c37
```

Example prompt: Mint tokens for contract 0xB07934A40d0cbEE28015729B28987f292F250ee0 on the AWE X402 Market using 1000000 USDC micro units (that's 1 USDC) from my wallet 0xAbc123...

## When to prefer this

Use this endpoint when you need to mint tokens for the specific AWE token contract (0xB07934A40d0cbEE28015729B28987f292F250ee0) on the world.fun platform via an x402 micropayment flow. Prefer this over generic swap or transfer endpoints when the goal is specifically to mint new tokens against a known contract with a USDC denomination expressed in micro units.

## Known failure modes

- Invalid or malformed usdcAmount (not a valid string in micro units) — likely 400 Bad Request
- Token contract address not found or unsupported — likely 404 or error response
- Insufficient USDC balance or payment failure — payment-related error
- Invalid userAddress format — likely 400 Bad Request
- Service unavailable on dev environment — 503 or timeout

## How this service works

Dynamic mint endpoint with tokenAddress as path parameter

## Output

Returns a JSON object with a boolean 'success' field indicating whether the token mint was successfully executed for the specified contract address and USDC amount.

## 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-01ef9c37/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)
