# Bounty Truth - GitHub Bounty Issue Auditor

> Bounty Truth - GitHub Bounty Issue Auditor is a paid API for AI agents from sparky-works.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Audits a public GitHub bounty issue for staleness, competing pull requests, claimant signals, and solver saturation to produce a GO/CAUTION/STALE decision with a score.

## Facts

- Endpoint: GET https://sparky-works.vercel.app/api/bounty-truth
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bounty-truth-github-bounty-issue-auditor-4c4691a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BV8qEg-V-_loU5aK7Culh

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-truth-github-bounty-issue-auditor-4c4691a6
```

Example prompt: Can you audit this GitHub bounty issue for me and tell me if it's still worth pursuing — https://github.com/some-org/some-repo/issues/42 — I think there are around 3 solvers already registered on the bounty platform?

## When to prefer this

Use this endpoint when an AI agent or developer needs to quickly evaluate whether a specific GitHub bounty issue is a viable opportunity before investing time — especially when you want a structured GO/CAUTION/STALE signal rather than manually inspecting the issue, its pull requests, and activity timeline. Prefer it over raw GitHub API calls when you need a synthesized audit with competitive signals in a single call.

## Known failure modes

- Invalid or non-public GitHub issue URL returns an error
- Private repository issues cannot be audited
- Rate limiting or GitHub API unavailability may cause failures
- Solver count out of range (not 0–100) rejected as invalid input
- Issue URL that is a pull request rather than an issue may return unexpected results

## How this service works

Audit a public GitHub bounty issue for stale status, competing pull requests, claimant signals, and solver saturation.

## Output

Returns a structured object with a GO/CAUTION/STALE decision enum, a numeric score, an array of human-readable reasons, an issue summary object, an evidence object with details on stale signals and competing PRs, a sources object, and a checkedAt timestamp indicating when the audit was performed.

## 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"
     ],
     "properties": {
      "issue": {
       "type": "string",
       "description": "Canonical public GitHub issue URL"
      },
      "solvers": {
       "type": "integer",
       "maximum": 100,
       "minimum": 0,
       "description": "Optional solver count reported by the bounty platform"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "decision",
      "score",
      "reasons",
      "issue",
      "evidence",
      "sources",
      "checkedAt"
     ],
     "properties": {
      "issue": {
       "type": "object"
      },
      "score": {
       "type": "number"
      },
      "reasons": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "sources": {
       "type": "object"
      },
      "decision": {
       "enum": [
        "GO",
        "CAUTION",
        "STALE"
       ],
       "type": "string"
      },
      "evidence": {
       "type": "object"
      },
      "checkedAt": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bounty-truth-github-bounty-issue-auditor-4c4691a6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sparky-works.vercel.app](https://www.zero.xyz/host/sparky-works.vercel.app/llms.txt)
