Indiegogo Campaign Scraper
Pricing
Pay per usage
Go to Apify Store
Indiegogo Campaign Scraper
Pricing
Pay per usage
Rating
0.0
(0)
Developer

Donny Nguyen
Maintained by Community
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
Scrape Indiegogo campaign pages to extract funding amounts, backer counts, perk tiers, creator details, and campaign descriptions. Uses Puppeteer with stealth plugins for reliable data extraction from Indiegogo's dynamic single-page application.
Features
- Extracts detailed campaign data including raised amounts, funding goals, and percent funded
- Captures backer counts and days remaining
- Scrapes perk/reward tiers with prices and claimed counts
- Extracts creator names, categories, and taglines
- Stealth mode to avoid bot detection
- Residential proxy support for high success rates
- Session rotation for consistent access
Input Parameters
| Field | Type | Description | Default |
|---|---|---|---|
urls | array | List of Indiegogo campaign URLs to scrape | (required) |
maxResults | integer | Maximum number of campaigns to scrape | 100 |
useResidentialProxy | boolean | Use residential proxy for anti-bot bypass | true |
Example Input
{"urls": ["https://www.indiegogo.com/projects/remarkable-paper-pro","https://www.indiegogo.com/projects/another-campaign"],"maxResults": 100,"useResidentialProxy": true}
Output
Each scraped campaign produces a record with the following fields:
| Field | Type | Description |
|---|---|---|
url | string | Indiegogo campaign URL |
title | string | Campaign title |
tagline | string | Campaign tagline/subtitle |
creator | string | Campaign creator/owner name |
raisedAmount | number | Total amount raised (numeric) |
fundingGoal | number | Funding goal amount (numeric) |
percentFunded | number | Percentage of goal reached |
backersCount | integer | Total number of backers |
daysLeft | integer | Days remaining in the campaign |
category | string | Campaign category |
description | string | Campaign story/description (max 2000 chars) |
perksCount | integer | Number of perk tiers found |
perks | array | Array of perk tier objects |
scrapedAt | string | ISO timestamp of when the data was scraped |
Perk Tier Object
| Field | Type | Description |
|---|---|---|
title | string | Perk tier title |
price | string | Perk price/pledge amount |
claimed | string | Number of backers who claimed this perk |
Example Output
{"url": "https://www.indiegogo.com/projects/remarkable-paper-pro","title": "reMarkable Paper Pro","tagline": "The next generation paper tablet","creator": "reMarkable","raisedAmount": 5842000,"fundingGoal": 100000,"percentFunded": 5842,"backersCount": 15230,"daysLeft": 0,"category": "Technology","description": "The reMarkable Paper Pro is designed to replace...","perksCount": 4,"perks": [{"title": "Early Bird - Paper Pro Bundle","price": "$399","claimed": "5,000 backers"}],"scrapedAt": "2026-02-11T12:00:00.000Z"}
Notes
- Uses Puppeteer with stealth plugin to bypass Indiegogo's bot detection
- Residential proxy is recommended (enabled by default) for reliable access
- Each campaign page is loaded with a random delay to mimic human browsing
- Session pool rotates browser sessions to avoid blocks
- Failed requests are automatically retried up to 3 times
- Error records include the URL and error details for debugging
- Supports both fixed funding and flexible funding campaign types