# Analyze Successful Kickstarter Projects for Product Market F

**Use case:** 

Extract data from highly successful Kickstarter projects to identify common themes, funding levels, and backer demographics. Use these insights to validate new 

## Input

```json
{
  "searchQueries": [
    "sustainable fashion",
    "eco-friendly product",
    "kitchen gadget",
    "fitness equipment"
  ],
  "state": "successful",
  "sort": "most_funded",
  "maxResults": 150
}
```

## 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.