Indiegogo SERP Crowdfunding Product Scraper API

API Endpoint Specifications

  • Endpoint Path: /api/1/indieGoGo
  • Type of Data: JSON & 20/minute
  • Data Source: Indiegogo
  • Request Limit: 500 request/month
  • Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript
Indiegogo SERP Crowdfunding Product Scraper API Endpoint Basic Info

API Endpoint Path

required

Indiegogo SERP product data Scraper API

api/1/indieGoGo


Call Method

Required

GET

Type of Data Return

JSON

Output structured JSON data on Indiegogo SERP product


Available API Arguments & Parameters

token

required

BUYFROMLO API token. Free and subscription APIs are both available on api/1/indieGoGo, and accessible to on-site APP on /app/1/indiegogo as well

indieKW

required

Input a keyword in English

sortBy

required

Sort out the SERP product data by two paramaters. Trending, Most Funded

category

required

All categoriy options offered by indiegogo.com, such as Audio, Education, etc. Please check out indiegogo website for more details



Indiegogo SERP product data Scraper API

api/1/indieGoGo


Code Integration and Response

Python Code Sample


import requests

apiendpoint = "https://api.buyfromlo.com/api/1/indieGoGo"

## Required Arguments & Parameters ##

token = ""your buyfromlo token""
indieKW = ""Input a keyword""
sortBy = "Input a sortby criteria by referring the Indiegogo onsite options"
category = "Input a product category by referring the Indiegogo onsite options"

data="indieKW=" + indieKW + "&sortBy=" + sortBy + "&category=" + category
headers={"Authorization": "Bearer " + token}

## Call the api ##
response = requests.get(apiendpoint + data, headers=headers)
print(response.status_code)
print(response.json())
                        

JSON Response Sample


{
    'Query': " " (string),
    'Title': " " (string),
    'Description': " " (string),
    'Funded': " " (integer),
    'Currency': " " (string),
    'Raised%': " " (float),
    'campaignURL': " " (string),
    'ImageURL': " " (string),
}