Gamefound Tabletop Crowdfunding Tracker
Pricing
Pay per event
Gamefound Tabletop Crowdfunding Tracker
Scrape tabletop crowdfunding campaigns from Gamefound — backer counts, funding totals, pledge tiers, stretch goals, and campaign details for board games, RPGs, and miniatures.
Pricing
Pay per event
Rating
0.0
(0)
Developer
BowTiedRaccoon
Maintained by CommunityActor stats
0
Bookmarked
5
Total users
1
Monthly active users
5 days ago
Last modified
Categories
Share
Scrape tabletop crowdfunding campaigns from Gamefound — live backer counts, funding totals, pledge tiers, stretch goals, and full campaign details for board games, RPGs, accessories, and more.
What It Collects
For each campaign, the scraper returns:
| Field | Description |
|---|---|
project_id | Unique Gamefound project ID |
project_name | Campaign title |
project_url | Direct link to the campaign page |
creator_name / creator_url | Publisher or studio name and profile link |
category | Primary catalog category (e.g., Board & card games, TTRPG) |
tagline | Campaign tagline |
status | Campaign phase (Crowdfunding, LatePledge, Store, Upcoming, Ended) |
currency | Currency symbol (e.g., $, €, £) |
funding_goal | Target funding amount |
amount_raised | Total funds raised |
percent_funded | Funding percentage |
backer_count | Total number of backers |
follower_count | Number of campaign followers |
pledge_tiers | JSON array of pledge tiers with name, price, purchase count, and estimated delivery |
stretch_goals | JSON array of stretch goals with threshold, unlock status, and description |
start_date / end_date | Campaign window (ISO 8601) |
estimated_delivery | Earliest delivery date across pledge tiers |
updates_count | Number of project updates posted |
snapshot_at | Timestamp when the record was captured |
Input Options
| Parameter | Type | Description | Default |
|---|---|---|---|
maxItems | Integer | Maximum number of campaigns to return. Leave empty for all. | 10 |
projectPhase | Enum | Filter by campaign phase: All, Crowdfunding, LatePledge, Store, Upcoming | All |
catalogCategory | Enum | Filter by category: All, BoardAndCardGames, TTRPG, Accessories, VideoGames, Others | All |
Example Input
{"maxItems": 50,"projectPhase": "Crowdfunding","catalogCategory": "BoardAndCardGames"}
This returns up to 50 live crowdfunding campaigns in the Board & Card Games category.
Use Cases
- Market research — track which campaigns are gaining traction, compare backer counts and funding velocity across the tabletop space
- Publisher intelligence — monitor which studios are launching, how their campaigns perform, and what pledge structures they use
- Stretch goal analysis — understand how campaigns sequence and communicate stretch goals
- Pricing benchmarks — compare pledge tier structures and price points across categories
- Portfolio monitoring — watch campaigns for games you backed or want to track
How It Works
The scraper walks Gamefound's campaign listings, then reads live funding statistics from each project page — so backer count, amount raised and currency reflect the campaign right now, not a stale listing.
Pledge tiers are fetched from Gamefound's rewards API and normalized into a structured JSON array.
No login or API key is required.
Output Sample
{"project_id": 6631,"project_name": "Nemesis: Retaliation","project_url": "https://gamefound.com/en/projects/awaken-realms/nemesis-retaliation","creator_name": "Awaken Realms","creator_url": "https://gamefound.com/en/users/awaken-realms","category": "Board & card games","tagline": "The ultimate cinematic sci-fi survival horror experience returns.","status": "Ended","currency": "$","funding_goal": 500000,"amount_raised": 21506969.88,"percent_funded": 4301.39,"backer_count": 38214,"follower_count": 12045,"pledge_tiers": "[{\"name\":\"Core Game\",\"price\":149,\"currency\":\"$\",\"purchasedCount\":18432,\"estimatedDelivery\":\"2025-03-01\"}]","stretch_goals": "[{\"id\":1,\"title\":\"Extra Alien\",\"threshold\":1000000,\"unlocked\":true,\"description\":\"Adds a new alien species\"}]","start_date": "2023-10-15T12:00:00Z","end_date": "2023-11-14T12:00:00Z","estimated_delivery": "2025-03-01","updates_count": 47,"snapshot_at": "2026-05-21T21:00:00.000Z"}
Notes
- Gamefound hosts campaigns in multiple currencies depending on the creator's location. The
currencyfield carries the symbol;funding_goalandamount_raisedare in that same currency. - Campaigns with
status: Endedorstatus: Archivedare still accessible via Gamefound's search and are included whenprojectPhase: Allis selected. pledge_tiersandstretch_goalsare JSON-encoded arrays stored as strings, suitable for downstream parsing or direct use in JSON-aware tools.