# Proofwork Bounty Reality Check

> Proofwork Bounty Reality Check is a paid API for AI agents from proofwork-the402-webhook.phase-voice.workers.dev, paid per call via x402, $0.02/call, status down (last checked 2026-09-15).

Scores and verdicts a public GitHub bounty issue for legitimacy, profitability, and risk using evidence gathered from public signals.

## Facts

- Endpoint: GET https://proofwork-the402-webhook.phase-voice.workers.dev/v1/bounty-reality-check
- Price: $0.02/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proofwork-bounty-reality-check-f86c96bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_huhgi7lFJvZ4HDc8xnJJe

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 proofwork-bounty-reality-check-f86c96bd
```

Example prompt: Can you do a reality check on this GitHub bounty — https://github.com/someorg/repo/issues/123 — the advertised reward is $500 and I need at least $400 profit to make it worthwhile?

## When to prefer this

Use this endpoint when an agent or developer needs a fast, low-cost automated legitimacy score on a public GitHub bounty before committing time or resources. Preferred over manual review when dealing with unknown sponsors, suspicious reward amounts, or tight deadlines that require a quick go/no-go signal. Particularly useful in automated bounty-hunting pipelines that need to triage many issues cheaply ($0.02 per call).

## Known failure modes

- Missing or invalid issue_url returns a 400-level error
- Private or inaccessible GitHub repository causes evidence gathering to fail
- GitHub rate limits may reduce available evidence signals and lower score confidence
- Ambiguous or deleted issues may return low scores with empty evidence arrays
- Payment failure (402) if USDC balance is insufficient before the call is made

## How this service works

Low-cost evidence reports for Base market data, Base USDC receipts, public bounties, and non-cyber crypto work.

## Output

Returns a numeric score (0–100) reflecting bounty legitimacy and risk, a verdict string (e.g. 'manual_review', 'pass', 'fail'), an array of blockers describing specific disqualifying issues, and an evidence array of supporting signals used to compute the score.

## 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",
     "required": [
      "issue_url"
     ],
     "properties": {
      "deadline": {
       "type": "string",
       "description": "Optional advertised deadline"
      },
      "issue_url": {
       "type": "string",
       "description": "Public GitHub issue URL"
      },
      "minimum_profit_usd": {
       "type": "number",
       "minimum": 0
      },
      "advertised_reward_usd": {
       "type": "number",
       "minimum": 0
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "score": 62,
  "verdict": "manual_review",
  "blockers": [],
  "evidence": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proofwork-bounty-reality-check-f86c96bd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proofwork-the402-webhook.phase-voice.workers.dev](https://www.zero.xyz/host/proofwork-the402-webhook.phase-voice.workers.dev/llms.txt)
