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
3mo ago
Try it
Page number for pagination.
Sort order. Accepted values: 'trending', 'newest', 'most_funded', 'ending_soon', 'most_bac
Search keyword to find campaigns by name or description.
Category filter using the category URL name from get_categories (e.g. 'TechAndInnovation',
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 →
mouser.com API
mouser.com API
lazada.co.th API
Search for products and browse categories on Lazada Thailand to find detailed information like prices, descriptions, and availability. Discover items by keyword or category to compare specifications and make informed purchasing decisions.
woocommerce.com API
Browse and search thousands of WooCommerce extensions, themes, and business services from the official marketplace while accessing detailed product information, user reviews, and ratings. Integrate marketplace data, blog content, and documentation directly into your applications to help users discover and learn about WooCommerce solutions.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
zapimoveis.com.br API
Search and filter real estate listings across Brazil on ZAP Imóveis — the country's largest property portal. Retrieve listings for sale or rent with detailed attributes including price, location, size, bedrooms, bathrooms, parking, and amenities. Supports location autocomplete, property type discovery, and full listing detail retrieval.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
Indiegogo API – Crowdfunding Campaign Data · Parse