# Find Successful Kickstarter Tech Projects & Backer Data

**Use case:** 

Identify successfully funded technology projects on Kickstarter, including their pledged amounts, backer counts, and creator information. This helps product dev

## Input

```json
{
  "searchQueries": [
    "smart home device",
    "wearable tech",
    "sustainable gadgets",
    "robotics",
    "VR headset"
  ],
  "state": "successful",
  "sort": "most_funded",
  "maxResults": 200
}
```

## Output

```json
{
  "name": {
    "label": "Project",
    "format": "string"
  },
  "creatorName": {
    "label": "Creator",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "pledged": {
    "label": "Pledged",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "percentFunded": {
    "label": "% Funded",
    "format": "number"
  },
  "backersCount": {
    "label": "Backers",
    "format": "integer"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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