Gamefound Tabletop Crowdfunding Tracker avatar

Gamefound Tabletop Crowdfunding Tracker

Pricing

Pay per event

Go to Apify Store
Gamefound Tabletop Crowdfunding Tracker

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

BowTiedRaccoon

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 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:

FieldDescription
project_idUnique Gamefound project ID
project_nameCampaign title
project_urlDirect link to the campaign page
creator_name / creator_urlPublisher or studio name and profile link
categoryPrimary catalog category (e.g., Board & card games, TTRPG)
taglineCampaign tagline
statusCampaign phase (Crowdfunding, LatePledge, Store, Upcoming, Ended)
currencyCurrency symbol (e.g., $, €, £)
funding_goalTarget funding amount
amount_raisedTotal funds raised
percent_fundedFunding percentage
backer_countTotal number of backers
follower_countNumber of campaign followers
pledge_tiersJSON array of pledge tiers with name, price, purchase count, and estimated delivery
stretch_goalsJSON array of stretch goals with threshold, unlock status, and description
start_date / end_dateCampaign window (ISO 8601)
estimated_deliveryEarliest delivery date across pledge tiers
updates_countNumber of project updates posted
snapshot_atTimestamp when the record was captured

Input Options

ParameterTypeDescriptionDefault
maxItemsIntegerMaximum number of campaigns to return. Leave empty for all.10
projectPhaseEnumFilter by campaign phase: All, Crowdfunding, LatePledge, Store, UpcomingAll
catalogCategoryEnumFilter by category: All, BoardAndCardGames, TTRPG, Accessories, VideoGames, OthersAll

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 uses Gamefound's search API to retrieve paginated campaign listings, then fetches each project page to extract live funding statistics. Funding data (backer count, amount raised, currency) is read from the server-rendered state embedded in each campaign page — ensuring the numbers reflect the current live state of the campaign, not stale listing data.

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 currency field carries the symbol; funding_goal and amount_raised are in that same currency.
  • Campaigns with status: Ended or status: Archived are still accessible via Gamefound's search and are included when projectPhase: All is selected.
  • pledge_tiers and stretch_goals are JSON-encoded arrays stored as strings, suitable for downstream parsing or direct use in JSON-aware tools.