# Money Agent Radar – GitHub Bounty Issue Search

> Money Agent Radar – GitHub Bounty Issue Search is a paid API for AI agents from money-agent-production-736f.up.railway.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns open GitHub issues that carry a parsed USD bounty (from Algora or similar), filterable by minimum reward amount and keyword.

## Facts

- Endpoint: GET https://money-agent-production-736f.up.railway.app/v1/radar
- 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/money-agent-radar-github-bounty-issue-search-3c3d7fa2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IJZnnXzc86d2KrLJiQH_g

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 money-agent-radar-github-bounty-issue-search-3c3d7fa2
```

Example prompt: Find me open GitHub bounty issues worth at least $200 that are related to 'React' — I want to see what paid tasks are available.

## When to prefer this

Use this endpoint when you specifically need GitHub issues that carry a real, parsed USD monetary bounty (especially Algora-style bounties). Unlike a generic GitHub search, it normalizes bounty amounts across title formats and labels, and lets you filter by minimum reward. Prefer it over GitHub's own search API when the goal is finding financially compensated open source tasks rather than general issue discovery.

## Known failure modes

- No issues match the keyword or minimum USD filter — returns empty bounties array with count 0
- Invalid minUsd value (e.g. non-numeric) may return a 400 or empty result
- Service temporarily unavailable on Railway deployment — 502 or timeout
- Stale index: recently posted bounties may not yet appear in results

## How this service works

Call when you need open GitHub issues with a parsed USD bounty (Algora/$/USD in title or labels). Optional minUsd and q filter the list. Not a generic GitHub search clone.

## Output

Returns a JSON object with the total count of matching issues, aggregate paid amount, and an array of bounty objects each containing the issue title, URL, source platform (e.g. Algora), and parsed USD reward amount (or null if unpriced).

## 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",
     "properties": {
      "q": {
       "type": "string",
       "description": "Case-insensitive substring match on title and url."
      },
      "minUsd": {
       "type": "number",
       "description": "Minimum parsed USD reward. Omit to include unpriced issues."
      },
      "source": {
       "type": "string",
       "description": "Set to index only for the agent's own bazaar-index ping."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "paid",
      "count",
      "bounties"
     ],
     "properties": {
      "paid": {
       "type": "number"
      },
      "count": {
       "type": "number"
      },
      "bounties": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "source",
         "title",
         "url",
         "asset"
        ],
        "properties": {
         "url": {
          "type": "string"
         },
         "asset": {
          "type": "string"
         },
         "title": {
          "type": "string"
         },
         "source": {
          "type": "string"
         },
         "rewardUsd": {
          "type": [
           "number",
           "null"
          ]
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/money-agent-radar-github-bounty-issue-search-3c3d7fa2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from money-agent-production-736f.up.railway.app](https://www.zero.xyz/host/money-agent-production-736f.up.railway.app/llms.txt)
