Crowdfunding
Indiegogo logo

Indiegogo API

indiegogo.com

Crowdfunding marketplace - campaign discovery, perks, and creator info.

Actions
7
Category
Crowdfunding
Login
Not required
Output
JSON

Call the Indiegogo API

Submit a task, then poll the job until it settles. This example runs act_indiegogo_campaign_comments.

curl -X POST https://api.anakin.io/v1/wire/task \
  -H "X-API-Key: $ANAKIN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "action_id": "act_indiegogo_campaign_comments",
    "params": {
      "comment_thread_id": 336389
    }
  }'

7 actions on indiegogo.com

Read

  • Campaign Timeline

    act_indiegogo_campaign_timelineread1 credit / call

    Returns campaign lifecycle timeline events and phase milestones for a project ID.

    project_id
    integer · required
  • Homepage Feed

    act_indiegogo_homepage_ssrread1 credit / call

    Returns homepage metadata, available languages, and user location.

  • Promoted Campaign Listing

    act_indiegogo_promoted_campaign_listingread1 credit / call

    Returns featured and promoted campaign cards with funding totals, creator info, images, and phase.

    platform
    integer

Write

Write actions change state on indiegogo.com and run as the account you connect.

  • Campaign Comments

    act_indiegogo_campaign_commentswrite2 credits / call

    Returns paginated backer comments and discussion for a campaign thread.

    comment_thread_id
    integer · required
    sort_type
    integer
  • Campaign Search Listing

    act_indiegogo_campaign_search_listingwrite2 credits / call

    Returns paginated campaign card search results filtered by category, keyword, tags, and phase.

    category_id
    integer · required
    search_term
    string
    page_index
    integer
    sort_type
    integer
    project_phase_search_types
    array
    project_tags
    array
  • Perk Stock Availability

    act_indiegogo_perk_stock_availabilitywrite2 credits / call

    Returns live perk stock limits and per-user purchase caps for a campaign project and products.

    project_id
    integer · required
    product_ids
    array · required
  • Related Campaign Recommendations

    act_indiegogo_related_campaign_recommendationswrite2 credits / call

    Returns related campaigns with funding, creators, and tags.

    quantity
    integer
    source
    string
    include_refs
    boolean

Indiegogo API questions

Is there an API for Indiegogo?
Indiegogo does not offer a public data API for this, but Anakin Wire provides 7 maintained endpoints for indiegogo.com. You call Anakin's REST API with an action ID and parameters and get structured JSON back; Anakin handles the browser, proxies, anti-bot, and parsing.
How do I scrape Indiegogo data?
POST to https://api.anakin.io/v1/wire/task with your API key, the action ID, and its parameters, then poll GET /v1/wire/jobs/{id} until the job settles. There is nothing to install and no scraper to maintain — when indiegogo.com changes its markup, Anakin updates the action.
Do I need a Indiegogo account?
No. Every Indiegogo action listed here runs anonymously — no account and no credentials required.
What does the Indiegogo API cost?
Usage-based credits, charged per call and refunded automatically when a job fails. New accounts start with 300 free credits and no card. See anakin.io/pricing for the current rates.