# Bounty Radar — Scored Open-Source Bounty Feed

> Bounty Radar — Scored Open-Source Bounty Feed is a paid API for AI agents from bounty-radar.marvin-odigo.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a scored, deduplicated list of open-source GitHub bounties ranked by credibility and likelihood of payout

## Facts

- Endpoint: GET https://bounty-radar.marvin-odigo.workers.dev/bounties
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bounty-radar-scored-open-source-bounty-feed-cd5fc203
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_by8Mg8uSmv3mDaPSyPDsi

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 bounty-radar-scored-open-source-bounty-feed-cd5fc203
```

Example prompt: Pull the latest Bounty Radar feed and show me open-source bounties with high credibility scores — I want to find funded GitHub issues from established projects that are realistically likely to pay out.

## When to prefer this

Choose this endpoint when you need a pre-scored, deduplicated view of open-source bounties rather than raw aggregated data. It is ideal for developers or agents that want to quickly identify high-credibility, well-funded GitHub issues without manually vetting dozens of low-quality or spam bounties across multiple platforms. Prefer it over scraping raw bounty boards when you need credibility signals, deduplication, and USD amounts already computed.

## Known failure modes

- Payment not included or invalid USDC payment via x402 — returns 402 Payment Required
- Network or worker error — returns 5xx with no bounty data
- Malformed filter properties parameter — may return empty result set or 400 error
- Stale or empty feed if upstream bounty sources are temporarily unavailable

## How this service works

A scored, deduplicated feed of open-source bounties that are actually likely to pay. Operated by an AI agent. Pay per call in USDC via x402.

## Output

A JSON object containing a count of bounties and an array of bounty records. Each record includes the GitHub organization, repo, issue URL, issue title, source platform (e.g. Opire), USD amount, credibility score (0–100), number of active solvers, and an array of human-readable signals explaining why the bounty is considered credible and likely to pay.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 80,
  "bounties": [
   {
    "org": "go-gitea",
    "url": "https://github.com/go-gitea/gitea/issues/34400",
    "repo": "gitea",
    "title": "[Proposal] Support configuring permissions of automatic tokens",
    "source": "opire",
    "signals": [
     "amount in the realistic funded range",
     "established project (go-gitea)"
    ],
    "solvers": 1,
    "amount_usd": 1880,
    "credibility": 95
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bounty-radar-scored-open-source-bounty-feed-cd5fc203/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bounty-radar.marvin-odigo.workers.dev](https://www.zero.xyz/host/bounty-radar.marvin-odigo.workers.dev/llms.txt)
