Open Collective Scraper avatar

Open Collective Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Open Collective Scraper

Open Collective Scraper

Scrape Open Collective â€" an open-source funding platform for communities. Search collectives, projects, funds and organizations by keyword or category. Returns funding stats, backer counts, budget information, tags, and website links.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Scrape Open Collective — the leading transparent funding platform for open-source projects, communities, and non-profit initiatives. Search collectives by keyword, browse by tag, or look up specific organizations by slug to extract funding data, contributor counts, and metadata.

Features

  • Three search modes: keyword search, tag-based browsing, or direct slug lookup
  • All account types: collectives, funds, organizations, and projects
  • Financial transparency data: total raised, total spent, contributor counts, backer counts
  • Rich metadata: description, long description, social handles (Twitter, GitHub), website, tags, currency, and creation date
  • No authentication required: uses the public Open Collective GraphQL API

Use Cases

  • Track funding trends across open-source ecosystems
  • Research the financial health of communities and open-source projects
  • Build dashboards comparing contributor counts and funding levels
  • Monitor new collectives in specific domains (JavaScript, Python, climate, etc.)
  • Discover well-funded projects by tag (react, webpack, linux, etc.)

Input

FieldTypeDescriptionDefault
modeSelectSearch mode: search, byTag, or bySlugsearch
searchTermTextKeyword to search for (mode=search)open source
tagTextTag to filter by (mode=byTag): e.g. javascript, react, pythonjavascript
slugsArrayList of collective slugs to fetch (mode=bySlug): e.g. ["webpack","babel"]
accountTypeSelectAccount type filter: COLLECTIVE, FUND, ORGANIZATION, PROJECTCOLLECTIVE
maxItemsIntegerMaximum number of records to return (1–500)20

Output

Each record contains:

FieldTypeDescription
slugStringURL-friendly collective slug
nameStringDisplay name
legalNameStringLegal entity name (if different from name)
descriptionStringShort one-line description
longDescriptionStringFull description (up to 2,000 characters)
typeStringAccount type: COLLECTIVE, FUND, ORGANIZATION, or PROJECT
currencyStringOperating currency (e.g., USD, EUR)
imageUrlStringLogo/avatar image URL
websiteStringOfficial website URL
twitterHandleStringTwitter username (without @)
githubHandleStringGitHub org or repo path
createdAtStringISO 8601 creation timestamp
tagsArrayTopic/category tags
totalRaisedUsdNumberCumulative amount raised (in USD)
totalSpentUsdNumberCumulative amount spent (in USD)
contributorsCountIntegerNumber of contributors
backerCountIntegerNumber of financial backers
profileUrlStringDirect link to the Open Collective profile page
scrapedAtStringISO 8601 scrape timestamp

Example Output

{
"slug": "babel",
"name": "Babel",
"legalName": "Babel Open Source Project",
"description": "The JavaScript compiler",
"longDescription": "Babel is a toolchain that is mainly used to convert ECMAScript 2015+ code into a backwards compatible version of JavaScript.",
"type": "COLLECTIVE",
"currency": "USD",
"imageUrl": "https://images.opencollective.com/babel/logo.png",
"website": "https://babeljs.io",
"twitterHandle": "babeljs",
"githubHandle": "babel/babel",
"createdAt": "2016-10-20T12:00:00Z",
"tags": ["javascript", "open-source", "compiler"],
"totalRaisedUsd": 150000.0,
"totalSpentUsd": 120000.0,
"contributorsCount": 250,
"backerCount": 1200,
"profileUrl": "https://opencollective.com/babel",
"scrapedAt": "2026-06-04T15:30:00.000000+00:00"
}

FAQs

Does this require an API key? No. The Open Collective GraphQL API (api.opencollective.com/graphql/v2) is fully public and requires no authentication.

What is the difference between contributors and backers? Contributors are anyone who has contributed code, design, or other non-financial help. Backers are financial supporters (people or organizations who have donated money).

What account types are available?

  • COLLECTIVE — open-source projects and communities (most common)
  • FUND — fiscal host funds that distribute to multiple collectives
  • ORGANIZATION — companies that sponsor open-source work
  • PROJECT — sub-projects under a parent collective

Can I search for collectives in a specific programming language? Yes. Use mode=byTag with tags like javascript, python, rust, golang, react, webpack, etc.

How are financial amounts reported? All financial figures (totalRaisedUsd, totalSpentUsd) are reported in USD equivalents, regardless of the collective's native currency.

What is the maximum number of results I can fetch? Up to 500 records per run. For larger datasets, run the actor multiple times with different search terms or tags.