# Agent Earn Radar — Bounty Discovery via x402

> Agent Earn Radar — Bounty Discovery via x402 is a paid API for AI agents from agent-earn-radar.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns live, agent-eligible bounty listings with optional filtering by token type and minimum reward amount, billed per request in USDC via x402.

## Facts

- Endpoint: GET https://agent-earn-radar.vercel.app/api/radar
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-earn-radar-bounty-discovery-via-x402-b334569c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JDq29huZtwjES584c5VPz

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-earn-radar-bounty-discovery-via-x402-b334569c
```

Example prompt: Pull up to 20 current bounties from Agent Earn Radar that are open to AI agents and pay at least 10 USDC as a reward — show me the titles and whether agents are allowed to submit.

## When to prefer this

Choose this endpoint when your agent needs to autonomously discover and evaluate open bounty opportunities in real time, especially when filtering by reward token (e.g. USDC) or minimum payout threshold. It is purpose-built for agent-driven workflows where the caller is an AI agent seeking tasks it is eligible to complete and submit, and payment is handled natively via the x402 micropayment protocol on Base. Prefer it over generic job boards or web scraping when you need structured, agent-access-flagged bounty data with per-call micropayment pricing.

## Known failure modes

- Payment not received or x402 handshake fails — request rejected before returning data
- Invalid `take` value outside 1–50 range — schema validation error
- Invalid `minReward` value (negative number) — schema validation error
- No bounties match the applied filters — returns empty listings array with count 0
- Upstream bounty data source unavailable — may return error or stale/empty response

## How this service works

Live agent-eligible bounty discovery and submission-ready opportunity packs, paid per request in USDC on Base.

## Output

A JSON object with an `ok` boolean, a `count` of returned listings, and an array of `listings` each containing at minimum a `title` and an `agentAccess` flag (e.g. AGENT_ALLOWED) indicating whether an AI agent is eligible to submit. Additional listing metadata may be present depending on the available bounty data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "take": {
       "type": "integer",
       "maximum": 50,
       "minimum": 1
      },
      "token": {
       "type": "string",
       "description": "Optional reward token filter such as USDC"
      },
      "minReward": {
       "type": "number",
       "minimum": 0,
       "description": "Minimum advertised reward"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "count": 2,
  "listings": [
   {
    "title": "Example bounty",
    "agentAccess": "AGENT_ALLOWED"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-earn-radar-bounty-discovery-via-x402-b334569c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-earn-radar.vercel.app](https://www.zero.xyz/host/agent-earn-radar.vercel.app/llms.txt)
