Kickstarter Scraper avatar
Kickstarter Scraper
Try for free

3 days trial then $15.00/month - No credit card required now

View all Actors
Kickstarter Scraper

Kickstarter Scraper

epctex/kickstarter-scraper
Try for free

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

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "startUrls": [
11        "https://www.kickstarter.com/projects/1460250988/darkest-dungeon-by-red-hook-studios",
12        "https://www.kickstarter.com/discover/categories/games/tabletop%20games",
13        "https://www.kickstarter.com/discover/places/seattle-wa",
14        "https://www.kickstarter.com/profile/alleycatgames",
15        "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"
16    ],
17    "query": "Gadgets",
18    "maxResults": 10,
19    "category": "All",
20    "location": "United States",
21    "sort": "newest",
22    "customMapFunction": (object) => { return {...object} },
23    "proxyConfig": {
24        "useApifyProxy": true,
25        "apifyProxyGroups": [
26            "RESIDENTIAL"
27        ]
28    }
29};
30
31(async () => {
32    // Run the Actor and wait for it to finish
33    const run = await client.actor("epctex/kickstarter-scraper").call(input);
34
35    // Fetch and print Actor results from the run's dataset (if any)
36    console.log('Results from dataset');
37    console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
38    const { items } = await client.dataset(run.defaultDatasetId).listItems();
39    items.forEach((item) => {
40        console.dir(item);
41    });
42})();
43
44// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community
Actor metrics
  • 7 monthly users
  • 91.0% runs succeeded
  • 0.2 days response time
  • Created in Oct 2018
  • Modified about 2 hours ago