# Research Failed Kickstarter Projects to Avoid Common Pitfall

**Use case:** 

Analyze the characteristics of failed Kickstarter campaigns to understand common mistakes and market rejections. Prevent similar errors in your own crowdfunding

## Input

```json
{
  "searchQueries": [
    "music album",
    "indie game",
    "comic book",
    "art book"
  ],
  "state": "failed",
  "sort": "popularity",
  "maxResults": 100
}
```

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