Skip to main content
POST
/
api
/
kickstarter
/
projects
/
rewards
/kickstarter/projects/rewards
curl --request POST \
  --url https://api.anysite.io/api/kickstarter/projects/rewards \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "project": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "KickstarterReward",
    "id": 123,
    "name": "<string>",
    "description": "<string>",
    "amount": 123,
    "currency": "<string>",
    "converted_amount": 123,
    "converted_currency": "<string>",
    "backer_count": 123,
    "limit": 123,
    "limit_per_backer": 123,
    "remaining_quantity": 123,
    "estimated_delivery_date": "<string>",
    "is_available": true,
    "is_max_pledge": true,
    "reward_type": "<string>",
    "shipping_preference": "<string>",
    "shipping_summary": "<string>",
    "starts_at": 123,
    "ends_at": 123,
    "items": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
project
string
required

Project slug ('creator/project-name') or full project URL

Minimum string length: 1
Example:

"elanlee/exploding-kittens"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:KickstarterReward
id
integer | null
name
string | null
description
string | null
amount
number | null
currency
string | null
converted_amount
number | null
converted_currency
string | null
backer_count
integer | null
limit
integer | null
limit_per_backer
integer | null
remaining_quantity
integer | null
estimated_delivery_date
string | null
is_available
boolean | null
is_max_pledge
boolean | null
reward_type
string | null
shipping_preference
string | null
shipping_summary
string | null
starts_at
integer | null
ends_at
integer | null
items
object[]