Endpoint Playground
Test Crawlora's Get a Kickstarter campaign's detail 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/project?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": {
"id": 1114436418,
"name": "musubi: the first consumer holographic frame",
"slug": "musubi",
"url": "https://www.kickstarter.com/projects/lookingglass/musubi",
"blurb": "Turn any photo into a hologram.",
"state": "successful",
"goal": 50000,
"pledged": 423762.5,
"percent_funded": 847,
"backers_count": 3009,
"category": {
"name": "Technology",
"url": "https://www.kickstarter.com/discover/categories/technology"
},
"creator": {
"name": "Looking Glass",
"url": "https://www.kickstarter.com/profile/lookingglass"
},
"story": "Turn any photo or video into a hologram. No subscription required.",
"risks_and_challenges": "The largest risk is manufacturing scale.",
"updates_count": 12,
"comments_count": 34,
"faq_count": 8,
"has_video": true,
"reward_tiers": [
{
"id": "UmV3YXJkLTExMDQ1MDc4",
"name": "LAUNCH DAY SPECIAL",
"description": "Save $50 off MSRP. Shipping charged separately after campaign ends.",
"amount": 99,
"currency": "USD",
"backers_count": 998,
"estimated_delivery_on": "2026-06-01",
"shipping_enabled": true,
"shipping_preference": "unrestricted",
"shipping_summary": "Anywhere in the world",
"items": [
{
"name": "musubi holographic photo and video frame",
"quantity": 1
}
]
}
]
}
}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 detail: funding snapshot (goal, pledged, percent funded, backers, state, dates), category, creator, cover photo, story text, risks & challenges, update/comment/FAQ counts, and reward/pledge tiers. creator and slug are the two path segments of the project URL, e.g. lookingglass and musubi for kickstarter.com/projects/lookingglass/musubi. Reward tiers are best-effort -- see the endpoint's documentation for when they may be omitted.
{
"code": 200,
"msg": "OK",
"data": {
"id": 1114436418,
"name": "musubi: the first consumer holographic frame",
"slug": "musubi",
"url": "https://www.kickstarter.com/projects/lookingglass/musubi",
"blurb": "Turn any photo into a hologram.",
"state": "successful",
"goal": 50000,
"pledged": 423762.5,
"percent_funded": 847,
"backers_count": 3009,
"category": {
"name": "Technology",
"url": "https://www.kickstarter.com/discover/categories/technology"
},
"creator": {
"name": "Looking Glass",
"url": "https://www.kickstarter.com/profile/lookingglass"
},
"story": "Turn any photo or video into a hologram. No subscription required.",
"risks_and_challenges": "The largest risk is manufacturing scale.",
"updates_count": 12,
"comments_count": 34,
"faq_count": 8,
"has_video": true,
"reward_tiers": [
{
"id": "UmV3YXJkLTExMDQ1MDc4",
"name": "LAUNCH DAY SPECIAL",
"description": "Save $50 off MSRP. Shipping charged separately after campaign ends.",
"amount": 99,
"currency": "USD",
"backers_count": 998,
"estimated_delivery_on": "2026-06-01",
"shipping_enabled": true,
"shipping_preference": "unrestricted",
"shipping_summary": "Anywhere in the world",
"items": [
{
"name": "musubi holographic photo and video frame",
"quantity": 1
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/kickstarter/project?creator=<creator>&slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"