Skip to main content
POST
/
api
/
indiegogo
/
campaigns
/indiegogo/campaigns
curl --request POST \
  --url https://api.anysite.io/api/indiegogo/campaigns \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "campaign": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "@type": "IndiegogoCampaign",
    "alias": "<string>",
    "tagline": "<string>",
    "story": "<string>",
    "url": "<string>",
    "image": "<string>",
    "category": "<string>",
    "currency": "<string>",
    "currency_symbol": "<string>",
    "goal": 123,
    "funds_raised": 123,
    "funds_raised_total": 123,
    "percent_funded": 123,
    "backer_count": 123,
    "total_backer_count": 123,
    "phase": "<string>",
    "campaign_outcome": "<string>",
    "campaign_start_at": 123,
    "campaign_end_at": 123,
    "funded_at": 123,
    "published_at": 123,
    "campaign_day": 123,
    "perk_count": 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
    },
    "perks": [],
    "stretch_goals": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
campaign
string
required

Campaign slug ('stardome-transparent-suite-pod') or campaign URL

Minimum string length: 1
Examples:

"stardome-transparent-suite-pod"

"https://www.indiegogo.com/projects/stardome/stardome-transparent-suite-pod"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
name
string
required
@type
string
default:IndiegogoCampaign
alias
string | null
tagline
string | null
story
string | null
url
string | null
image
string | null
category
string | null
currency
string | null
currency_symbol
string | null
goal
number | null
funds_raised
number | null
funds_raised_total
number | null
percent_funded
number | null
backer_count
integer | null
total_backer_count
integer | null
phase
string | null
campaign_outcome
string | null
campaign_start_at
integer | null
campaign_end_at
integer | null
funded_at
integer | null
published_at
integer | null
campaign_day
integer | null
perk_count
integer | null
tags
object[]
game_properties
object | null
creator
object | null
perks
object[]
stretch_goals
object[]