data·vault_
← Catalog

Solana grants list: how to map the ecosystem's funding programs from public data

Snapshot from 2026-09-04, published 2026-09-10. Source: the public Superteam Earn API. This is a research-method guide; it covers program mapping, and nothing on this page is investment, tax, or income advice.

What people are actually looking for

Search for a Solana grants list and the need behind it is usually one of three: a builder deciding where to apply, a researcher tracking which sponsors fund what, or an analyst watching how work markets in the ecosystem shift. No single page answers any of them, because the ecosystem funds work through separate channels: per-program grant tracks (application forms, milestone reviews), hackathon prize pools, and time-boxed bounties posted on public boards. The largest public board for the Solana ecosystem is Superteam Earn, where sponsors post bounties and projects with deadlines, token labels, and submission counts, all behind a readable public API.

The durable move is to stop hunting for someone else's static list and build the mapping from rows. A snapshot gives you the fields (sponsor, type, deadline, status, automation policy) and the history that a live board overwrites every week.

The data source: the Superteam Earn API, flattened

The Superteam Earn dataset documented here was harvested from the public API on 2026-09-04 and ships three research files plus harvest notes:

Column reference for the cards file, with the fields a mapping needs: title, type (bounty or project), token, deadline (ISO 8601), status, agentAccess (HUMAN_ONLY or AGENT_ALLOWED), sponsor, and _count (comments and submissions). The full table is in the Superteam Earn data guide.

What the 2026-09-04 snapshot shows

Seventeen unique listings were open on harvest day. The splits that matter for mapping, at row level and after dedupe:

Split51 rows (raw)17 listings (deduped)
agentAccess: HUMAN_ONLY4515
agentAccess: AGENT_ALLOWED62
type: bounty4515
type: project62
token: USDC3913
token: USDG124
status: OPEN5117

Row-level and unique counts agree here because the two project-type listings are also the two AGENT_ALLOWED listings. The 6 AGENT_ALLOWED rows are 2 unique listings: the ZNS Solana Creator Challenge (ZNS Connect) and the Steve Agent Arena (OOBE Protocol). Both are automation-themed work, which is what the flag promises: listings where tooling-assisted submission is welcome.

The mapping method, step by step

Querying the snapshot without downloading it

The dataset-mcp server reads the full released files and filters them in memory; setup is one npx line on the For agents page. The layer question (MCP vs raw endpoints) is covered in the MCP vs API guide. One real call over the cards file:

get_stats("earn-bounties", { file: "earn-listings-cards.json", column: "agentAccess" })

Verbatim output from the September 2026 run of server v1.1.0:

{
  "slug": "earn-bounties",
  "file": "earn-listings-cards.json",
  "rows": 51,
  "column": "agentAccess",
  "non_empty": 51,
  "unique_count": 2,
  "top_values": [
    { "value": "HUMAN_ONLY",     "count": 45 },
    { "value": "AGENT_ALLOWED",  "count": 6 }
  ]
}

query_dataset with a where clause on agentAccess returns the 6 AGENT_ALLOWED rows themselves; dedupe on id from there for the 2 unique listings.

What this data cannot tell you

A snapshot is one day. It records 17 open listings on 2026-09-04 and 12 descriptions that had already aged out; it does not capture listings posted after harvest, and the cards feed itself is a rolling window. Grants proper, the milestone-funded programs run by foundations and protocol teams, mostly live outside this board entirely: the endpoint map documents where those routes sit, but this dataset holds the bounty-board slice. Rewards are recorded as amounts and token labels for completeness; comparing them across sponsors or extrapolating them into earnings estimates is bad method, and the submission counts prove nothing about acceptance odds. This page maps funding programs for research. It is not investment advice, not a yield estimate, and not a recommendation to buy or sell anything.

Get the snapshot

Start with the free 10-card sample to check the schema, then take the full pack for all 51 card records, 28 full descriptions, the 186-route endpoint map, and the harvest README. Related reading: the full Superteam Earn data guide, the Solana ecosystem data overview, the web3 bounty data overview, and the tracker comparison in bounty tracker alternative.

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.

Solana grants list questions

Where can I find a list of Solana grants?

No single official list exists. Programs run per sponsor, and the public concentration point for bounties and projects is Superteam Earn. The research route is snapshots: this dataset gives the board's slice as rows, and the endpoint map's grants and hackathon route groups show where program-level funding lives. Combine both with each program's own pages for a full picture. For the other data layers around this board (chain state, validator stats, venue intelligence), see the Solana ecosystem data overview.

What does AGENT_ALLOWED mean?

The listing's automation policy: submissions through tooling and agents are welcome, versus HUMAN_ONLY where a person must submit. In the 2026-09-04 snapshot: 6 of 51 card rows, which dedupe to 2 unique listings, both automation-themed work.

Is a grants list the same as a bounty list?

No. Grants are program funding with application routes and usually milestones; bounties are per-deliverable payouts with deadlines and submission counters. The type column (bounty vs project) and the separate grants route groups in the endpoint map keep the two apart, and any serious mapping should keep them separated.