Kickstarter Scraper
3 days trial then $15.00/month - No credit card required now
Kickstarter Scraper
3 days trial then $15.00/month - No credit card required now
The ultimate and most all-encompassing Kickstarter tool you'll ever discover. With powerful search features, you can instantly locate and access any live project on Kickstarter.com. Search by location, project status, funding progress, and more. User-friendly, cost-effective, and without limitations
You can access the Kickstarter Scraper programmatically from your own JavaScript applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
10const input = {
11 "startUrls": [
12 "https://www.kickstarter.com/projects/1460250988/darkest-dungeon-by-red-hook-studios",
13 "https://www.kickstarter.com/discover/categories/games/tabletop%20games",
14 "https://www.kickstarter.com/discover/places/seattle-wa",
15 "https://www.kickstarter.com/profile/alleycatgames",
16 "https://www.kickstarter.com/discover/advanced?term=board+games&category_id=12&pledged=1&goal=1&sort=newest&seed=2832283&next_page_cursor=&page=1"
17 ],
18 "query": "Gadgets",
19 "maxResults": 10,
20 "category": "All",
21 "location": "United States",
22 "sort": "newest",
23 "customMapFunction": (object) => { return {...object} },
24 "proxyConfig": {
25 "useApifyProxy": true,
26 "apifyProxyGroups": [
27 "RESIDENTIAL"
28 ]
29 }
30};
31
32// Run the Actor and wait for it to finish
33const run = await client.actor("epctex/kickstarter-scraper").call(input);
34
35// Fetch and print Actor results from the run's dataset (if any)
36console.log('Results from dataset');
37console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
38const { items } = await client.dataset(run.defaultDatasetId).listItems();
39items.forEach((item) => {
40 console.dir(item);
41});
42
43// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Kickstarter Scraper API in JavaScript
The Apify API client for JavaScript is the official library that allows you to use Kickstarter Scraper API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
npm install apify-client
Other API clients include:
Actor Metrics
6 monthly users
-
13 stars
>99% runs succeeded
Created in Oct 2018
Modified 2 days ago