Skip to main content
POST
/
api
/
indiegogo
/
campaigns
/
perks
/indiegogo/campaigns/perks
curl --request POST \
  --url https://api.anysite.io/api/indiegogo/campaigns/perks \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "campaign": "<string>",
  "timeout": 300
}
'
[
  {
    "name": "<string>",
    "@type": "IndiegogoPerk",
    "id": 123,
    "description": "<string>",
    "price": 123,
    "retail_price": 123,
    "currency": "<string>",
    "is_discounted": true,
    "is_digital": true,
    "is_featured": true,
    "is_most_popular": true,
    "has_limited_stock": true,
    "remaining_stock": 123,
    "claimed_count": 123,
    "estimated_delivery_at": 123,
    "image": "<string>",
    "url": "<string>"
  }
]

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

name
string
required
@type
string
default:IndiegogoPerk
id
integer | null
description
string | null
price
number | null
retail_price
number | null
currency
string | null
is_discounted
boolean | null
is_digital
boolean | null
has_limited_stock
boolean | null
remaining_stock
integer | null
claimed_count
integer | null
estimated_delivery_at
integer | null
image
string | null
url
string | null