Skip to main content
POST
/
api
/
kickstarter
/
projects
/
updates
/kickstarter/projects/updates
curl --request POST \
  --url https://api.anysite.io/api/kickstarter/projects/updates \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "project": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "@type": "KickstarterUpdate",
    "id": 123,
    "update_title": "<string>",
    "text": "<string>",
    "published_at": 123,
    "is_public": true
  }
]

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"

count
integer
required

Number of updates to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:KickstarterUpdate
id
integer | null
update_title
string | null
text
string | null
published_at
integer | null
is_public
boolean | null