# Agent Utilities — Change Order (Bounty Radar & Bid Draft)

> Agent Utilities — Change Order (Bounty Radar & Bid Draft) is a paid API for AI agents from x402.devvizion.com, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-14).

Generates a paid change-order response — either a full bounty radar or a bid draft — for a given topic or brief, paid per-call via x402 on Base.

## Facts

- Endpoint: POST https://x402.devvizion.com/v0/change-order
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-utilities-change-order-bounty-radar-bid-draft-427a72eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Xvkyjhdv1EI37FriNgOJ0

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 agent-utilities-change-order-bounty-radar-bid-draft-427a72eb -d '<json body>'
```

Example prompt: Can you generate a full bounty radar for the topic 'AI agent tooling' and also draft a bid proposal from this brief: 'Build a Telegram bot that monitors crypto prices and sends alerts' — limit the radar to 10 results?

## When to prefer this

Choose this endpoint when you need a per-call, no-subscription bounty radar or bid draft generated on demand and are willing to pay a small USDC micropayment (~0.01–0.015 USDC) via x402 on Base. Prefer this over subscription-based alternatives when call volume is low or sporadic, or when building an agent that needs to autonomously discover bounties or compose bids without a recurring commitment.

## Known failure modes

- Payment not settled via x402 — returns HTTP 402 with payment details required
- Missing required topic or brief field — returns error indicating insufficient input
- Invalid packId — endpoint may return empty or error response
- Topic too vague — radar may return low-quality or sparse results
- Network or Base chain latency causing payment confirmation delays

## How this service works

Free sample bounty radar, then paid full radar (0.015 USDC) or bid draft (0.01 USDC) on Base via x402. No subscription.

## Output

Returns a Markdown-formatted document containing either a full bounty radar (list of relevant bounty opportunities for the given topic) or a bid draft (structured proposal based on the provided job brief), depending on the inputs supplied. The response is scoped to the paid tier after x402 micropayment settlement on Base.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "Optional URL alias for topic"
  },
  "brief": {
   "type": "string",
   "description": "Bid-draft job brief"
  },
  "limit": {
   "type": "number",
   "description": "Radar result limit"
  },
  "scene": {
   "type": "string",
   "description": "Storyboard scene description"
  },
  "topic": {
   "type": "string",
   "description": "Research topic, scene, or brief text"
  },
  "packId": {
   "type": "string",
   "description": "Pack id for /v0/pack"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "contentType": "text/markdown; charset=utf-8",
  "description": "change-order markdown response"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-utilities-change-order-bounty-radar-bid-draft-427a72eb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.devvizion.com](https://www.zero.xyz/host/x402.devvizion.com/llms.txt)
