# Trader Joe Bounty Matcher

> Trader Joe Bounty Matcher is a paid API for AI agents from joe-bounty-matcher.marnick-yezo.workers.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Ranks open crypto bounties and hackathon gigs from Superteam, Dework, and ETHGlobal by skills, chain, minimum payout, and agent-eligibility.

## Facts

- Endpoint: POST https://joe-bounty-matcher.marnick-yezo.workers.dev/v1/match
- 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/trader-joe-bounty-matcher-2a141afd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YZxCHqL1apoJlyt1oH81T

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 trader-joe-bounty-matcher-2a141afd -d '<json body>'
```

Example prompt: Find me the top 5 open bounties on Solana for a Rust developer paying at least $300, and make sure they're eligible for AI agents.

## When to prefer this

Choose this endpoint when an agent or developer needs to discover and prioritize open crypto bounties or hackathon prizes across Superteam, Dework, and ETHGlobal in a single ranked call, especially when filtering by chain, skill set, minimum payout, or agent-eligibility. Prefer this over manually scraping each platform separately.

## Known failure modes

- No matching bounties found for the given filter combination — returns empty ranked list
- Invalid chain enum value causes validation error
- minUsd value too high filters out all available listings
- Upstream listing sources (Superteam, Dework, ETHGlobal) temporarily unavailable causing stale or missing results
- Payment not processed (x402 $0.02 USDC required) resulting in 402 response

## How this service works

Rank currently open gigs from public Superteam listings, Dework, and ETHGlobal prize/hackathon pages by skills, chain, min USD, and agent-eligibility.

## Output

A ranked list of open bounties and gigs, each including title, source platform (Superteam, Dework, or ETHGlobal), prize or payout amount in USD, relevant blockchain, required skills, and whether the opportunity is marked as agent-eligible.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "solana",
    "ethereum",
    "base"
   ],
   "type": "string"
  },
  "limit": {
   "type": "integer"
  },
  "minUsd": {
   "type": "number"
  },
  "skills": {
   "type": "string"
  },
  "agentEligible": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/trader-joe-bounty-matcher-2a141afd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from joe-bounty-matcher.marnick-yezo.workers.dev](https://www.zero.xyz/host/joe-bounty-matcher.marnick-yezo.workers.dev/llms.txt)
