# ArgonautWorks Bounty Signal API

> ArgonautWorks Bounty Signal API is a paid API for AI agents from argonaut-bounty-signal.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Checks the viability of a GitHub issue as a paid bounty by assessing issue state, repo trust, payout evidence, age, claims, assignments, and competing pull requests.

## Facts

- Endpoint: GET https://argonaut-bounty-signal.vercel.app/api/v1/check
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/argonautworks-bounty-signal-api-21de284f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VnyJzuhZ5dJkqaj0TfP3-

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 argonautworks-bounty-signal-api-21de284f
```

Example prompt: Before I start working on it, can you check whether this GitHub issue is still a viable bounty — is it open, are there competing PRs, and is there payout evidence? https://github.com/some-org/some-repo/issues/42

## When to prefer this

Use this endpoint when an agent or developer needs a fast, structured signal on whether a specific GitHub issue is worth investing time in as a paid bounty — particularly when avoiding wasted effort on closed issues, already-claimed work, or heavily contested bounties. Prefer this over manually checking GitHub when automating bounty-hunting pipelines or agent workflows.

## Known failure modes

- Invalid or non-public GitHub issue URL returns an error
- Issue URL resolves to a private or deleted repository
- Rate limiting from GitHub API causes incomplete data retrieval
- Closed issues return verdict 'reject' with reason 'canonical_issue_closed'
- Issues with many competing PRs return low score with 'existing_competition' reason

## How this service works

Canonical GitHub bounty viability checks for agents: live issue state, repository trust, payout evidence, age, claims, assignments, and competing pull requests.

## Output

Returns a viability score (numeric), a verdict (e.g. 'reject' or 'accept'), a list of reasons explaining the verdict, and structured evidence including the canonical issue state and the count of competing pull requests.

## 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": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "description": "Canonical public GitHub issue URL to assess as a paid bounty."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "score": 0,
  "reasons": [
   "canonical_issue_closed",
   "existing_competition"
  ],
  "verdict": "reject",
  "evidence": {
   "canonical_issue_state": "closed",
   "competing_pull_requests": 12
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/argonautworks-bounty-signal-api-21de284f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from argonaut-bounty-signal.vercel.app](https://www.zero.xyz/host/argonaut-bounty-signal.vercel.app/llms.txt)
