# 🚀 Kickstarter Scraper — Projects, Goals & Backers

**Use case:** 

No-code, cheap Kickstarter API. Scrape crowdfunding projects: name, category, creator, goal, pledged, percent funded, backers & dates — cheapest per item.

## Input

```json
{
  "sort": "popularity",
  "state": "",
  "term": "",
  "categoryId": "",
  "maxItems": 100,
  "debug": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "id": {
    "label": "Id",
    "format": "number"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "blurb": {
    "label": "Blurb",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "categoryParent": {
    "label": "Category Parent",
    "format": "text"
  },
  "creator": {
    "label": "Creator",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "goal": {
    "label": "Goal",
    "format": "number"
  },
  "pledged": {
    "label": "Pledged",
    "format": "number"
  },
  "percentFunded": {
    "label": "Percent Funded",
    "format": "number"
  },
  "backersCount": {
    "label": "Backers Count",
    "format": "number"
  },
  "staffPick": {
    "label": "Staff Pick",
    "format": "boolean"
  },
  "spotlight": {
    "label": "Spotlight",
    "format": "boolean"
  },
  "launchedAt": {
    "label": "Launched At",
    "format": "date"
  },
  "deadline": {
    "label": "Deadline",
    "format": "date"
  },
  "image": {
    "label": "Image",
    "format": "image"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "sourceUrl": {
    "label": "Source Url",
    "format": "link"
  },
  "collectedAt": {
    "label": "Collected At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Kickstarter Scraper — Crowdfunding Projects & Stats](https://apify.com/hipersoft/kickstarter-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/hipersoft/kickstarter-scraper) to learn more, explore other use cases, and run it yourself.