# Skip Trace California People Search Scraper

**Use case:** 

Skip trace people in California by name with full name, known addresses, aliases, and profile URL. Export structured people-search data to CSV.

## Input

```json
{
  "maxItems": 50,
  "firstName": "John",
  "lastName": "Smith",
  "state": "California"
}
```

## Output

```json
{
  "fullName": {
    "label": "Full Name",
    "format": "text"
  },
  "additionalNames": {
    "label": "Additional Names",
    "format": "text"
  },
  "addresses": {
    "label": "Addresses",
    "format": "text"
  },
  "profileUrl": {
    "label": "Profile Url",
    "format": "link"
  },
  "searchedFirstName": {
    "label": "Searched First Name",
    "format": "text"
  },
  "searchedLastName": {
    "label": "Searched Last Name",
    "format": "text"
  },
  "searchedState": {
    "label": "Searched State",
    "format": "text"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Skip Trace People Search](https://apify.com/parseforge/skip-trace-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/skip-trace-scraper) to learn more, explore other use cases, and run it yourself.