Skip to main content
POST
/
api
/
indiegogo
/
campaigns
/
search
/indiegogo/campaigns/search
curl --request POST \
  --url https://api.anysite.io/api/indiegogo/campaigns/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 5000,
  "timeout": 300,
  "term": "<string>",
  "sort": 0,
  "categories": [],
  "phases": [],
  "benefits": [],
  "tags": [
    123
  ],
  "creator_id": 123,
  "player_counts": []
}
'
import requests

url = "https://api.anysite.io/api/indiegogo/campaigns/search"

payload = {
"count": 5000,
"timeout": 300,
"term": "<string>",
"sort": 0,
"categories": [],
"phases": [],
"benefits": [],
"tags": [123],
"creator_id": 123,
"player_counts": []
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
count: 5000,
timeout: 300,
term: '<string>',
sort: 0,
categories: [],
phases: [],
benefits: [],
tags: [123],
creator_id: 123,
player_counts: []
})
};

fetch('https://api.anysite.io/api/indiegogo/campaigns/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/indiegogo/campaigns/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'count' => 5000,
'timeout' => 300,
'term' => '<string>',
'sort' => 0,
'categories' => [

],
'phases' => [

],
'benefits' => [

],
'tags' => [
123
],
'creator_id' => 123,
'player_counts' => [

]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://api.anysite.io/api/indiegogo/campaigns/search"

payload := strings.NewReader("{\n \"count\": 5000,\n \"timeout\": 300,\n \"term\": \"<string>\",\n \"sort\": 0,\n \"categories\": [],\n \"phases\": [],\n \"benefits\": [],\n \"tags\": [\n 123\n ],\n \"creator_id\": 123,\n \"player_counts\": []\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/indiegogo/campaigns/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 5000,\n \"timeout\": 300,\n \"term\": \"<string>\",\n \"sort\": 0,\n \"categories\": [],\n \"phases\": [],\n \"benefits\": [],\n \"tags\": [\n 123\n ],\n \"creator_id\": 123,\n \"player_counts\": []\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.anysite.io/api/indiegogo/campaigns/search")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"count\": 5000,\n \"timeout\": 300,\n \"term\": \"<string>\",\n \"sort\": 0,\n \"categories\": [],\n \"phases\": [],\n \"benefits\": [],\n \"tags\": [\n 123\n ],\n \"creator_id\": 123,\n \"player_counts\": []\n}"

response = http.request(request)
puts response.read_body
[
  {
    "id": 123,
    "name": "<string>",
    "@type": "IndiegogoCampaignCard",
    "alias": "<string>",
    "tagline": "<string>",
    "url": "<string>",
    "image": "<string>",
    "platform": "<string>",
    "category": "<string>",
    "currency_symbol": "<string>",
    "goal": 123,
    "funds_raised": 123,
    "percent_funded": 123,
    "backer_count": 123,
    "follower_count": 123,
    "funded_in_seconds": 123,
    "installment_count": 123,
    "installment_min_payment": 123,
    "phase": "<string>",
    "campaign_start_at": 123,
    "campaign_end_at": 123,
    "tags": [],
    "game_properties": {
      "@type": "IndiegogoGameProperties",
      "min_age": 123,
      "min_players": 123,
      "max_players": 123,
      "play_time": 123
    },
    "creator": {
      "@type": "IndiegogoCreator",
      "id": 123,
      "name": "<string>",
      "alias": "<string>",
      "image": "<string>",
      "profile_url": "<string>",
      "bio": "<string>",
      "location": "<string>",
      "legal_entity_name": "<string>",
      "legal_entity_type": "<string>",
      "created_at": 123
    }
  }
]
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required
Required range: 1 <= x <= 10000
timeout
integer
default:300
Required range: 20 <= x <= 1500
term
string | null
sort
enum<integer>
default:0
Available options:
0,
1,
2,
3,
4,
5,
6,
7,
8,
9
categories
enum<string>[] | null
Available options:
TechAndInnovation,
General,
Productivity,
TravelAndOutdoors,
Home,
EnergyAndGreenTech,
CameraGear,
HealthAndFitness,
Transportation,
PhonesAndAccessories,
FashionAndWearables,
FoodAndBeverages,
Audio,
Education,
CreativeWorks,
Film,
Comics,
Music,
WritingAndPublishing,
DanceAndTheater,
Art,
WebSeriesAndTVShows,
OtherCreations,
PodcastsBlogsAndVlogs,
Photography,
CommunityProjects,
Wellness,
Culture,
LocalBusinesses,
OtherCommunityProjects,
Environment,
HumanRights,
GamingCulture,
BoardAndCardGames,
VideoGames,
TTRPG,
Accessories,
Others
phases
enum<string>[] | null
Available options:
Upcoming,
Crowdfunding,
Preorder,
Funded,
LatePledge,
Store
benefits
enum<string>[] | null
Available options:
StablePledge,
StretchPay
tags
integer[] | null
creator_id
integer | null
player_counts
enum<string>[] | null
Available options:
One,
Two,
Three,
FourAndMore

Response

Successful Response

id
integer
required
name
string
required
@type
string
default:IndiegogoCampaignCard
alias
string | null
tagline
string | null
url
string | null
image
string | null
platform
string | null
category
string | null
currency_symbol
string | null
goal
number | null
funds_raised
number | null
percent_funded
number | null
backer_count
integer | null
follower_count
integer | null
funded_in_seconds
integer | null
installment_count
integer | null
installment_min_payment
number | null
phase
string | null
campaign_start_at
integer | null
campaign_end_at
integer | null
tags
object[]
game_properties
object | null
creator
object | null