data·vault_
← Catalog

Web3 bounty listings data: the input a Solana bounty tracker needs

Snapshot from 2026-09-04, published 2026-09-09. Data source: the public Superteam Earn API.

Why web3 bounty listings are hard to track

Paid bounty work in crypto lives on a handful of separate boards. Superteam Earn covers much of the Solana ecosystem, hackathon platforms run their own listing feeds, and grant portals post their own calls. Each board ships its own page layout, and most expose no documented public API. A builder who wants one view of open work has to assemble it piece by piece.

Three failure modes follow. First, coverage gaps: your tracker only sees the boards you wired up, and each new board is a new reverse-engineering project. Second, brittle scrapes: a page redesign silently breaks an HTML scraper that has no schema contract to protect it. Third, missed deadlines: bounty pages bury cutoff times in markup, and a submission window that closes at 21:59 UTC does not care that your cron job ran at 22:00.

The usual fix is a structured dataset with a stable column list: one row per listing, fields for reward, token, deadline, status, sponsor, and submission counts. That is what the pack documented here provides for the largest Solana bounty board.

What the Superteam Earn dataset gives you

The pack was harvested from the public Superteam Earn API on 2026-09-04 and ships four files (full inventory on the dataset page):

The two listing files overlap without matching: 16 of the 17 live card listings have full descriptions, and 12 description rows are listings that had already aged out of the live feed by harvest day. Treat them as two views of one week in the market.

Query the bounty data over MCP

The dataset-mcp server (listed in the official registry as io.github.jayjex/dataset-mcp) reads the full released files and answers read-only queries: query_dataset filters and paginates, get_stats returns column distributions, 100 rows per call. Setup is one npx line; the walkthrough is on the For agents page.

A real call against the cards file, listings above 5,000 USD:

query_dataset(
  "earn-bounties",
  {
    "where": [{ "column": "rewardAmount", "op": "gt", "value": 5000 }],
    "columns": ["title", "rewardAmount", "token"]
  }
)

Returns 6 rows from the September 2026 test run, 2 unique listings repeated across API pages: Create Content for Breakpoint 2026 (8,000 USDG) and Solana Summit Serbia Content Bounty (10,000 USDG). Dedupe on slug and the shape is clean enough to feed a tracker's database directly.

A second call, get_stats("earn-bounties", { "column": "agentAccess" }), returns 45 HUMAN_ONLY and 6 AGENT_ALLOWED records. That flag is the contract agent tooling needs: it marks which listings allow automated participation.

The 186-route endpoint map, read-only

earn-api-endpoints.txt documents how a production bounty platform organizes its routes: 186 paths across listings, comments, submissions, bookmarks, grants, hackathons, image signing, and sponsor operations. It is a reference, not a scrape script. Nothing in it requires credentials you do not already have, and the notes on the Privy passwordless auth flow describe what the public app already does. For tracker builders, the map shows which endpoints a future integration would target and what fields each touches.

Research and tooling use cases

Honest limits before you build on this

Framing note: this pack is a research and tooling input. Nothing on this page predicts contest outcomes and nothing here is an income estimate. If you are weighing the platform against data files, the Superteam Earn alternative guide compares the two jobs side by side.

Get the bounty data

Check the schema with the free 10-card sample, then take the full pack if it fits: all 51 card records, all 28 full descriptions, the 186-route endpoint map, and the harvest README.

Checkout and download run through Getly. Source: public Superteam Earn API, harvested 2026-09-04. Personal and commercial use; no resale of the files as-is. For the schema deep dive, read the Superteam Earn data guide.