Endpoint Playground
Test Crawlora's Kickstarter Updates API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/kickstarter/updates?creator=<creator>&slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| creator | string | Yes | Creator path segment of the project URL | |
| slug | string | Yes | Project slug path segment of the project URL |
{
"code": 200,
"msg": "OK",
"data": {
"updates": [
{
"number": 7,
"title": "We're running slightly behind on our address collection surveys.",
"body": "Hey everyone -- surveys are taking a little longer than expected...",
"author_name": "Looking Glass",
"is_creator": true,
"published_at": "July 10, 2026",
"url": "https://www.kickstarter.com/projects/lookingglass/musubi/posts/4740868",
"comments_count": 30
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns one Kickstarter campaign's full updates feed: for each update, its number, title, author, whether the author is the creator, publish date, body text, and comment count. creator and slug are the two path segments of the project URL, e.g. lookingglass and musubi for kickstarter.com/projects/lookingglass/musubi.
{
"code": 200,
"msg": "OK",
"data": {
"updates": [
{
"number": 7,
"title": "We're running slightly behind on our address collection surveys.",
"body": "Hey everyone -- surveys are taking a little longer than expected...",
"author_name": "Looking Glass",
"is_creator": true,
"published_at": "July 10, 2026",
"url": "https://www.kickstarter.com/projects/lookingglass/musubi/posts/4740868",
"comments_count": 30
}
]
}
}curl "https://api.crawlora.net/api/v1/kickstarter/updates?creator=<creator>&slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"