# BountyVerdict Portfolio Comparator

> BountyVerdict Portfolio Comparator is a paid API for AI agents from bountyverdict-agent-production.mimirslab.workers.dev, paid per call via x402, $0.4/call, status unknown (last checked 2026-09-14).

Compares 2–10 public GitHub bounty issues side-by-side, runs full due-diligence on each, ranks them by opportunity quality, and returns per-issue verdicts plus the top non-AVOID recommendation.

## Facts

- Endpoint: POST https://bountyverdict-agent-production.mimirslab.workers.dev/api/portfolio
- Price: $0.4/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bountyverdict-portfolio-comparator-4310878c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zIRP5Z0avljSmT_LuTFbu

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 bountyverdict-portfolio-comparator-4310878c -d '<json body>'
```

Example prompt: I have five GitHub bounty issues I'm considering — https://github.com/org/repo/issues/101, https://github.com/org/repo/issues/202, https://github.com/org/repo2/issues/55, https://github.com/org/repo3/issues/8, and https://github.com/org/repo4/issues/310 — can you run a full due-diligence comparison on all of them and tell me which one is the strongest opportunity to work on?

## When to prefer this

Use this endpoint when an agent needs to choose among multiple GitHub bounties rather than evaluating a single issue. It is the right choice when the user has 2–10 candidate issues and wants a ranked, actionable recommendation in one call rather than making multiple single-issue verdict calls and manually comparing results.

## Known failure modes

- Fewer than 2 or more than 10 issue URLs provided — returns validation error
- Non-GitHub or malformed URLs rejected by pattern validation
- Private or inaccessible GitHub issues cannot be fetched — returned as partial failures
- All candidates flagged AVOID — no top recommendation returned
- Network or rate-limit errors reading GitHub issue data — partial failure reported per candidate
- Payment of 0.4 USDC not fulfilled — HTTP 402 returned before processing

## How this service works

Compare two to ten public GitHub bounties and choose the best candidate to work on. Runs the full due-diligence check for every issue, ranks opportunities, returns per-candidate verdicts and partial failures, and identifies the strongest non-AVOID option in one call.

## Output

A ranked list of the submitted GitHub bounty issues, each with a per-candidate verdict (including AVOID flags and reasons), partial failure notes for any issues that couldn't be fully checked, and a clear identification of the single best non-AVOID bounty to pursue.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "issue_urls": {
   "type": "array",
   "items": {
    "type": "string",
    "pattern": "^https://github\\.com/[^/]+/[^/]+/issues/[0-9]+(?:[?#].*)?$"
   },
   "maxItems": 10,
   "minItems": 2,
   "description": "Two to ten canonical public GitHub issue URLs to compare and rank.",
   "uniqueItems": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bountyverdict-portfolio-comparator-4310878c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bountyverdict-agent-production.mimirslab.workers.dev](https://www.zero.xyz/host/bountyverdict-agent-production.mimirslab.workers.dev/llms.txt)
