Discover/indiegogo.com API
live

indiegogo.com APIindiegogo.com

Search campaigns, fetch reward tiers, comments, updates, FAQs, and creator profiles from Indiegogo. 10 endpoints covering the full campaign lifecycle.

Endpoints
10
Updated
4mo ago
Try it
Page number for pagination.
Sort order. Accepted values: 'trending', 'newest', 'most_funded', 'ending_soon', 'most_backed'.
Search keyword to find campaigns by name or description.
Category filter using the category URL name from get_categories (e.g. 'TechAndInnovation', 'CreativeWorks', 'CommunityProjects', 'GamingCulture', 'Audio', 'Film').
Project type filter. Accepted values: 'campaign', 'indemand'.
Project timing filter. Accepted values: 'ongoing', 'upcoming', 'funded'.
api.parse.bot/scraper/80b750af-4178-4720-a348-eca95353f7de/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/80b750af-4178-4720-a348-eca95353f7de/search_campaigns?page=1&sort=trending&term=tech' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 10 totalclick to expand

Search for crowdfunding campaigns by keyword, category, type, timing, and sort order. Returns paginated results.

Input
ParamTypeDescription
pageintegerPage number for pagination.
sortstringSort order. Accepted values: 'trending', 'newest', 'most_funded', 'ending_soon', 'most_backed'.
termstringSearch keyword to find campaigns by name or description.
categorystringCategory filter using the category URL name from get_categories (e.g. 'TechAndInnovation', 'CreativeWorks', 'CommunityProjects', 'GamingCulture', 'Audio', 'Film').
project_typestringProject type filter. Accepted values: 'campaign', 'indemand'.
project_timingstringProject timing filter. Accepted values: 'ongoing', 'upcoming', 'funded'.
Response
{
  "type": "object",
  "fields": {
    "pageIndex": "integer zero-based page index",
    "pagedItems": "array of campaign objects with name, projectID, shortDescription, campaignGoal, creatorName, etc.",
    "totalItemCount": "integer total number of matching campaigns",
    "totalPageCount": "integer total number of pages"
  },
  "sample": {
    "data": {
      "pageIndex": 0,
      "pagedItems": [
        {
          "name": "YHE BP Doctor Fit: Gen 3 Blood Pressure Smartwatch",
          "phase": 40,
          "urlName": "yhe-bp-doctor-fit-gen-3-blood-pressure-smartwatch",
          "projectID": 18247,
          "creatorName": "YHE Official",
          "campaignGoal": 4000,
          "creatorUrlName": "yheofficial",
          "shortDescription": "Professional BP Monitoring | 50+ Sports Modes"
        }
      ],
      "totalItemCount": 93,
      "totalPageCount": 8
    },
    "status": "success"
  }
}

About the indiegogo.com API

The Indiegogo API provides 10 endpoints for accessing crowdfunding campaign data including search, reward tiers, creator profiles, updates, and FAQs. The search_campaigns endpoint lets you filter by keyword, category, sort order, and project timing — returning paginated results with funding goals, backer counts, and creator names. Campaign-level endpoints expose comment threads, perk structures, and creator project histories.

Campaign Discovery and Search

The search_campaigns endpoint accepts a term keyword along with optional filters for category, project_type (campaign or indemand), project_timing (ongoing, upcoming, funded), and sort order (trending, newest, most_funded, ending_soon, most_backed). Results are paginated, and each item in pagedItems includes name, projectID, shortDescription, campaignGoal, and creatorName. The get_categories endpoint returns the full category tree with subcategories and their URL slugs, which feed directly into the category filter on search. The get_featured_campaigns endpoint returns homepage spotlight items with displayTitle, displayText, displayImageUrl, and targetUrl.

Campaign Detail and Funding Data

get_campaign_details accepts a slug in creator-url-name/project-url-name format and returns fields including phase, projectID, campaignGoal, creatorUrlName, and shortDescription. That projectID is the key that unlocks reward, update, and creator project lookups. get_campaign_rewards returns both a rewards object (with nested items carrying name, price, effectivePrice, and productID) and an addons object for any add-on categories the campaign offers.

Creator Profiles and Activity

get_creator_profile accepts a creator_slug and returns name, avatarUrl, creatorID, and description. The numeric creatorID from that response feeds get_creator_projects, which returns a paginated list of all campaigns that creator has run, including each project's backersCount and fundsGathered. A hasCappedResults boolean indicates when the full project history has been truncated.

Comments, Updates, and FAQs

get_campaign_comments can resolve a thread from a slug or accept a direct thread_id, and supports cursor-based pagination via last_id. Each comment object includes commentID, text, authorID, createdAt, and a children array for nested replies. get_campaign_updates pages through creator updates using lowest_sequence and returns each update's title, publishedAt, and sequenceNumber. get_campaign_faq returns an array of FAQ entries with header (the question) and content as HTML-formatted answers.

Common use cases
  • Track funding momentum by comparing campaignGoal to fundsGathered across campaigns in a category
  • Build a reward-tier comparison tool using price, effectivePrice, and name from get_campaign_rewards
  • Monitor creator activity by pulling all projects via get_creator_projects and watching backersCount changes
  • Aggregate campaign FAQs and updates to build a knowledge base for a specific product category
  • Identify trending or ending-soon campaigns using the sort and project_timing filters in search_campaigns
  • Analyze comment sentiment on campaigns by pulling text fields from get_campaign_comments with pagination
  • Curate a feed of homepage-featured campaigns using displayTitle and displayImageUrl from get_featured_campaigns
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Indiegogo have an official public developer API?+
Indiegogo does not currently offer a public developer API for third-party use. There is no documented REST or GraphQL API available to external developers on their platform.
What does `get_campaign_rewards` return, and does it include shipping or availability details?+
The endpoint returns a rewards object with nested items including name, price, effectivePrice, and productID, plus an addons object for add-on categories. Shipping cost breakdowns and geographic availability per reward tier are not currently included in the response. You can fork this API on Parse and revise it to add those fields if the source exposes them on the campaign page.
How does comment pagination work in `get_campaign_comments`?+
Pagination is cursor-based. On the first call, omit last_id. Each subsequent call should pass the commentID of the oldest comment from the previous response as last_id, which returns comments older than that ID. The totalItemCount field tells you how many top-level comments exist in total.
Does the API return backer counts or funds raised for individual campaigns?+
get_creator_projects returns backersCount and fundsGathered per project in the creator's history. However, get_campaign_details and search_campaigns results do not currently include a live backer count or percentage-funded figure alongside the campaignGoal. You can fork this API on Parse and revise it to surface those fields from the campaign detail response.
Can I retrieve campaign media such as images or embedded videos?+
The current endpoints do not return campaign gallery images, pitch video URLs, or embedded media assets. get_featured_campaigns does include a displayImageUrl for spotlight items, but full campaign media is not exposed. You can fork this API on Parse and revise it to add a media endpoint covering campaign images and video links.
Page content last updated . Spec covers 10 endpoints from indiegogo.com.
Related APIs in MarketplaceSee all →
fundrazr.com API
Search and discover FundRazr crowdfunding campaigns by category, then access detailed information about campaign progress, activity, highlights, and organizer profiles. Get comprehensive insights into fundraising campaigns to track funding goals, supporter engagement, and campaign updates all in one place.
kitabisa.com API
Explore crowdfunding campaigns on Kitabisa, Indonesia's largest crowdfunding platform. Browse by category, search by keyword, and retrieve detailed campaign information including fundraising stories, donor lists, progress updates, and fundraiser profiles.
ketto.org API
Discover trending and searchable fundraisers on Ketto with detailed campaign information, updates, and community comments to find causes that matter to you. Access real-time platform statistics and browse fundraising campaigns across different categories to support or learn about active charitable initiatives.
patreon.com API
Search for Patreon creators and discover their membership tiers, pricing, patron counts, and detailed profile information. Find the creators you want to support or research with comprehensive details about their offerings and community size.
icodrops.com API
Access structured data on active, upcoming, and ended Initial Coin Offerings listed on icodrops.com. Retrieve project metadata including ticker, round type, raised amounts, investors, and ecosystems. Look up individual projects by slug or search across all listings by keyword.
crypto-fundraising.info API
Track cryptocurrency fundraising activity by searching projects and investors, viewing deal details, and staying updated with the latest crypto funding news and top active venture funds. Monitor major fundraising rounds, explore investor portfolios, and research emerging crypto projects all in one place.
cults3d.com API
Search and discover 3D printable models across Cults3D's marketplace, filtering by categories and sorting by popularity metrics like downloads, views, and likes. Access detailed information about specific creations, designer profiles, and engagement data to find the perfect models for your printing projects.
grantwatch.com API
Search and browse thousands of grants from GrantWatch.com to find funding opportunities tailored to individuals, nonprofits, small businesses, and foundations. Get detailed grant information, filter by category, and discover newly posted grants to match your eligibility and funding needs.