# Agent Earn Radar — Bounty Opportunity Intelligence

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

Fetches a submission-ready bounty opportunity pack for a given slug, including eligibility requirements, risk flags, and extracted submission criteria, paid per request in USDC on Base via x402.

## Facts

- Endpoint: GET https://agent-earn-radar.vercel.app/api/opportunity/%7Bslug%7D
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-earn-radar-bounty-opportunity-intelligence-41eaca57
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zOtNwJ-wt708GzdMxZg08

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-opportunity-intelligence-41eaca57
```

Example prompt: Pull up the bounty opportunity pack for the slug 'coinbase-onchain-buildathon' — I want to see the eligibility requirements, any risk flags, and what deliverables I need to submit.

## When to prefer this

Choose this endpoint when an AI agent needs to programmatically assess whether a specific bounty is worth pursuing — getting parsed eligibility criteria, risk flags, and submission requirements in a single paid call. Prefer this over manual bounty page scraping or generic web search when you need structured, submission-ready intelligence and are willing to pay $0.10 USDC per lookup via x402 on Base.

## Known failure modes

- Invalid or unrecognized slug returns a non-ok response or 404
- Payment failure via x402 (insufficient USDC balance) blocks access to the response
- Slug resolves to an expired or closed bounty, returning stale or empty opportunity data
- Malformed input schema causes a 400-level error
- Network timeout from upstream bounty data source

## 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 containing an 'ok' boolean, a list of 'riskFlags' (e.g. 'github_required') that may block eligibility, an array of 'eligibilityQuestions' the submitter must answer, and 'extractedRequirements' listing concrete deliverables needed for submission.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "riskFlags": [
   "github_required"
  ],
  "eligibilityQuestions": [],
  "extractedRequirements": [
   "Submit a public deliverable"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-earn-radar-bounty-opportunity-intelligence-41eaca57/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)
