Endpoint Playground
Test Crawlora's Kickstarter Comments 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/comments?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": {
"total_count": 431,
"comments": [
{
"author_name": "William Grose",
"is_creator": false,
"body": "Just received my display and am super disappointed.",
"posted_at": "2026-08-20T05:47:42Z"
},
{
"author_name": "Looking Glass",
"is_creator": true,
"body": "Sorry to hear! Can you send us a photo?",
"posted_at": "2026-08-20T06:34:39Z"
}
]
}
}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 the first page of one Kickstarter campaign's comments feed (Kickstarter's own server-rendered initial batch, typically 40-60 comments; total_count reports the feed's real total). Each comment includes the author, whether the author is the creator (a reply), the posted timestamp, and the comment text. 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": {
"total_count": 431,
"comments": [
{
"author_name": "William Grose",
"is_creator": false,
"body": "Just received my display and am super disappointed.",
"posted_at": "2026-08-20T05:47:42Z"
},
{
"author_name": "Looking Glass",
"is_creator": true,
"body": "Sorry to hear! Can you send us a photo?",
"posted_at": "2026-08-20T06:34:39Z"
}
]
}
}curl "https://api.crawlora.net/api/v1/kickstarter/comments?creator=<creator>&slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"