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": []
}
'
[
  {
    "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
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Number of campaigns to return

Required range: 1 <= x <= 10000
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
term
string | null

Free-text keyword to match campaigns

sort
enum<integer>
default:0

Sort order

Available options:
0,
1,
2,
3,
4,
5,
6,
7,
8,
9
categories
enum<string>[] | null

Filter by one or more catalog categories

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

Filter by campaign status (upcoming, crowdfunding, ...)

Available options:
Upcoming,
Crowdfunding,
Preorder,
Funded,
LatePledge,
Store
benefits
enum<string>[] | null

Filter by backer benefits

Available options:
StablePledge,
StretchPay
tags
integer[] | null

Filter by one or more numeric project tag IDs

creator_id
integer | null

Filter by a specific creator ID

player_counts
enum<string>[] | null

Filter tabletop games by supported player counts

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