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

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "startUrls": [
8    "https://www.kickstarter.com/projects/1460250988/darkest-dungeon-by-red-hook-studios",
9    "https://www.kickstarter.com/discover/categories/games/tabletop%20games",
10    "https://www.kickstarter.com/discover/places/seattle-wa",
11    "https://www.kickstarter.com/profile/alleycatgames",
12    "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"
13  ],
14  "query": "Gadgets",
15  "maxResults": 10,
16  "category": "All",
17  "location": "United States",
18  "sort": "newest",
19  "customMapFunction": "(object) => { return {...object} }",
20  "proxyConfig": {
21    "useApifyProxy": true,
22    "apifyProxyGroups": [
23      "RESIDENTIAL"
24    ]
25  }
26}
27EOF
28
29# Run the Actor using an HTTP API
30# See the full API reference at https://docs.apify.com/api/v2
31curl "https://api.apify.com/v2/acts/epctex~kickstarter-scraper/runs?token=$API_TOKEN" \
32  -X POST \
33  -d @input.json \
34  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 8 monthly users
  • 11 stars
  • 100.0% runs succeeded
  • Created in Oct 2018
  • Modified 2 days ago