Skip to main content
POST
/
api
/
kickstarter
/
projects
/kickstarter/projects
curl --request POST \
  --url https://api.anysite.io/api/kickstarter/projects \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "project": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "alias": "<string>",
    "@type": "KickstarterProject",
    "description": "<string>",
    "project_url": "<string>",
    "image": "<string>",
    "video_url": "<string>",
    "state": "<string>",
    "goal": 123,
    "pledged": 123,
    "usd_pledged": 123,
    "converted_pledged_amount": 123,
    "percent_funded": 123,
    "backer_count": 123,
    "currency": "<string>",
    "currency_symbol": "<string>",
    "current_currency": "<string>",
    "static_usd_rate": 123,
    "fx_rate": 123,
    "usd_exchange_rate": 123,
    "country": "<string>",
    "country_displayable_name": "<string>",
    "created_at": 123,
    "launched_at": 123,
    "deadline": 123,
    "state_changed_at": 123,
    "updated_at": 123,
    "successful_at": 123,
    "is_staff_pick": true,
    "is_starrable": true,
    "is_launched": true,
    "is_prelaunch_activated": true,
    "is_in_post_campaign_pledging_phase": true,
    "is_spotlight": true,
    "disable_communication": true,
    "tags": [],
    "comment_count": 123,
    "update_count": 123,
    "faq_count": 123,
    "has_community": true,
    "creator": {
      "name": "<string>",
      "@type": "KickstarterCreator",
      "id": 123,
      "alias": "<string>",
      "image": "<string>",
      "profile_url": "<string>"
    },
    "category": {
      "name": "<string>",
      "@type": "KickstarterProjectCategory",
      "id": 123,
      "alias": "<string>",
      "parent_id": 123,
      "parent_name": "<string>"
    },
    "location": {
      "@type": "KickstarterLocation",
      "id": 123,
      "name": "<string>",
      "displayable_name": "<string>",
      "country": "<string>",
      "state": "<string>",
      "location_type": "<string>",
      "alias": "<string>"
    },
    "story": "<string>",
    "risks": "<string>"
  }
]

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 ('https://www.kickstarter.com/projects/creator/project-name')

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

id
integer
required
name
string
required
alias
string
required
@type
string
default:KickstarterProject
description
string | null
project_url
string | null
image
string | null
video_url
string | null
state
string | null
goal
number | null
pledged
number | null
usd_pledged
number | null
converted_pledged_amount
number | null
percent_funded
number | null
backer_count
integer | null
currency
string | null
currency_symbol
string | null
current_currency
string | null
static_usd_rate
number | null
fx_rate
number | null
usd_exchange_rate
number | null
country
string | null
country_displayable_name
string | null
created_at
integer | null
launched_at
integer | null
deadline
integer | null
state_changed_at
integer | null
updated_at
integer | null
successful_at
integer | null
is_staff_pick
boolean | null
is_starrable
boolean | null
is_launched
boolean | null
is_prelaunch_activated
boolean | null
is_in_post_campaign_pledging_phase
boolean | null
is_spotlight
boolean | null
disable_communication
boolean | null
tags
string[]
comment_count
integer | null
update_count
integer | null
faq_count
integer | null
has_community
boolean | null
creator
object | null
category
object | null
location
object | null
story
string | null
risks
string | null