# BountyWorth — Crypto Bounty Audit Report

> BountyWorth — Crypto Bounty Audit Report is a paid API for AI agents from bountyworth.amber-panda-3101.chatgpt.site, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Audits a given x402 or crypto bounty endpoint URL and returns a structured evidence packet indicating whether the bounty is funded, active, approvable, and worth an agent's effort.

## Facts

- Endpoint: GET https://bountyworth.amber-panda-3101.chatgpt.site/api/report
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bountyworth-crypto-bounty-audit-report-8106f266
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xEtWB5_aPJsrtLZ0O8UwE

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 bountyworth-crypto-bounty-audit-report-8106f266
```

Example prompt: Before I start working on this bounty, run a BountyWorth audit on https://app.gib.work/bounty/b7c2a3c9-c412-4613-9cfb-d8a5f54d14b7 using a GET request and tell me if it's actually funded and approvable, or if I should skip it.

## When to prefer this

Use this endpoint when an AI agent or autonomous worker is deciding whether to commit effort to a crypto bounty or x402-gated task. It is specifically designed for pre-work due diligence on bounty viability, giving structured go/no-go evidence rather than raw scraped data. Prefer it over general web-scraping when you need a structured earnability verdict, severity-ranked signals, and recommended actions — especially for Gibwork, x402 scan listings, or any URL surfaced by bounty aggregators.

## Known failure modes

- Invalid or unreachable URL returns an error or empty evidence set
- Bounty platform blocks public scraping, leading to incomplete signal coverage
- Stale data if the bounty was funded or closed after the last scan
- Missing approval path data if the platform requires authentication to view submission queues
- Network timeout if the target bounty URL is slow or rate-limited

## How this service works

Verify Base USDC transaction evidence or check an x402 endpoint’s payment challenge, resource binding, CORS exposure, and Bazaar readiness.

## Output

Returns a structured JSON evidence packet containing: a product/version identifier, a decision object with a verdict (e.g. 'skip' or 'pursue'), an earnability score (0–100), confidence level, an array of evidence signals each labeled by severity (critical/material/positive) with observations and implications, a risk profile summarizing signal counts, an opportunity object with title/source/URL, recommended actions for the agent, and a provenance block describing data policy, methodology, and scan timestamp.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "report",
      "paid"
     ],
     "properties": {
      "paid": {
       "type": "boolean"
      },
      "report": {
       "type": "object",
       "required": [
        "product",
        "version",
        "decision",
        "opportunity",
        "riskProfile",
        "evidence",
        "recommendedActions",
        "provenance"
       ],
       "properties": {
        "product": {
         "type": "string"
        },
        "version": {
         "type": "string"
        },
        "decision": {
         "type": "object"
        },
        "evidence": {
         "type": "array",
         "items": {
          "type": "object"
         }
        },
        "provenance": {
         "type": "object"
        },
        "opportunity": {
         "type": "object"
        },
        "riskProfile": {
         "type": "object"
        },
        "recommendedActions": {
         "type": "array",
         "items": {
          "type": "string"
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "paid": true,
  "report": {
   "product": "BountyWorth evidence packet",
   "version": "2026-08-28",
   "decision": {
    "summary": "High probability of unpaid, blocked, or uneconomic work.",
    "verdict": "skip",
    "confidence": "high-risk evidence present",
    "earnabilityScore": 0
   },
   "evidence": [
    {
     "label": "Review queue",
     "severity": "critical",
     "implication": "Resolve or independently verify this blocker before starting work.",
     "observation": "133 submissions / 0 approved"
    },
    {
     "label": "Creator activity",
     "severity": "critical",
     "implication": "Resolve or independently verify this blocker before starting work.",
     "observation": "Paused · no recent review"
    },
    {
     "label": "Payout evidence",
     "severity": "material",
     "implication": "Confirm this condition with the payer before committing meaningful time.",
     "observation": "Escrowed, but no approval path"
    },
    {
     "label": "Human dependency",
     "severity": "material",
     "implication": "Confirm this condition with the payer before committing meaningful time.",
     "observation": "Verified account required"
    }
   ],
   "provenance": {
    "scannedAt": "2026-08-28T00:00:00.000Z",
    "dataPolicy": "Public source data only. No wallet connection, login, or private credential used.",
    "limitation": "This report estimates payout viability; it is not a payment guarantee or financial advice.",
    "methodology": "Deterministic public-data heuristics. Verify source terms before committing work."
   },
   "opportunity": {
    "title": "350 USDC landing-page bounty",
    "source": "Gibwork demo",
    "sourceUrl": "https://app.gib.work/bounty/b7c2a3c9-c412-4613-9cfb-d8a5f54d14b7"
   },
   "riskProfile": {
    "totalSignals": 4,
    "criticalSignals": 2,
    "materialSignals": 2,
    "positiveSignals": 0
   },
   "recommendedActions": [
    "Do not commit work under the current public conditions.",
    "Re-scan only after the payer publishes new funding, review, or settlement evidence.",
    "Redirect effort to a lower-friction opportunity with an active approval path."
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bountyworth-crypto-bounty-audit-report-8106f266/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bountyworth.amber-panda-3101.chatgpt.site](https://www.zero.xyz/host/bountyworth.amber-panda-3101.chatgpt.site/llms.txt)
