data·vault_
← Catalog

Superteam Earn alternative: a dataset approach to Solana bounty data

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

Two different jobs: tracking and researching

Most searches for a Superteam Earn alternative come from two very different places. If you want to get paid for bounty work, you want the platform itself: live listings, notification pings when sponsors post, a submission flow. No dataset replaces that, and we will not pretend otherwise.

The second group has the opposite problem. Aggregator builders, analysts, and agent developers do not need another place to read listings. They need the listings as data: rows they can load, columns they can trust, and enough of the underlying API structure to build their own tooling on top. A tracker gives you a screen; this page is about the alternative that gives you a dataset.

The pack documented here is a harvest of the public Superteam Earn API: 51 card records covering 17 unique live listings, 28 full listing descriptions, and a map of 186 API routes. Below is what each approach does well, so you can pick the right one for your job.

What a live bounty tracker does well

A platform tracker, Superteam Earn included, runs a real-time feed. New listings appear as sponsors post them, deadlines tick down on the page, and notifications reach you before a submission window closes. For a builder choosing which bounty to work on this week, that freshness is the whole point, and it is exactly what a static file cannot give you.

Trackers also handle the workflow side: profiles, submission forms, sponsor communication, payouts. That machinery sits outside anything a data pack touches.

What the dataset approach gives you instead

The Superteam Earn dataset was harvested from the public API on 2026-09-04 and ships four files:

Three things a screen cannot hand you fall out of that structure:

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

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

Six rows from the September 2026 test run, two unique listings after dedupe: Create Content for Breakpoint 2026 (8,000 USDG) and Solana Summit Serbia Content Bounty (10,000 USDG). That is the shape of the data your own aggregator would ingest.

Tracker vs dataset, side by side

NeedLive tracker (platform)Dataset approach
New listings as they postYes, real-time feedNo, snapshot only
Deadline alertsYes, notificationsNo, you check the live site
Submitting work and payoutsYes, full workflowNot in scope
Loading rows into your own DBNo documented APIYes, JSON/CSV with 18 documented fields
Offline analysis and backtestingNoYes, full files
Endpoint reference for toolingNot publicYes, 186 routes documented
Agent queries without a browserNoYes, MCP server, read-only

Read the table as two tools for two jobs, not a ranking. The tracker wins on freshness and workflow. The dataset wins anywhere you need the data as data.

Who the dataset approach fits

For a fuller walk through the files themselves, see the Superteam Earn data guide and the web3 bounty listings data guide.

Honest limits

Framing note: this pack is a research and tooling input. Nothing on this page predicts contest outcomes and nothing here is an income estimate.

Get the bounty dataset

Check the schema with the free 10-card sample, then take the full pack if the job 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.