# Kickstarter 3D Printer Project Scraper

**Use case:** 

Search Kickstarter for 3D printer campaigns and export project names, funding status, goals, pledges, backers, creators, dates, and URLs.

## Input

```json
{
  "searchTerms": [
    "3d printer"
  ],
  "category": "technology",
  "state": "",
  "sortBy": "magic",
  "maxResults": 50,
  "goalRange": "",
  "pledgedRange": "",
  "raisedRange": ""
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "projectName": {
    "label": "Project"
  },
  "state": {
    "label": "State"
  },
  "goal": {
    "label": "Goal",
    "format": "number"
  },
  "pledged": {
    "label": "Pledged",
    "format": "number"
  },
  "currency": {
    "label": "Currency"
  },
  "percentFunded": {
    "label": "% Funded",
    "format": "number"
  },
  "backerCount": {
    "label": "Backers",
    "format": "number"
  },
  "creatorName": {
    "label": "Creator"
  },
  "category": {
    "label": "Category"
  },
  "subcategory": {
    "label": "Subcategory"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "launchDate": {
    "label": "Launch date",
    "format": "date"
  },
  "deadline": {
    "label": "Deadline",
    "format": "date"
  },
  "location": {
    "label": "Location"
  },
  "staffPick": {
    "label": "Staff pick",
    "format": "boolean"
  },
  "description": {
    "label": "Description"
  }
}
```

## About this Actor

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