# Smith US Election Candidates

**Use case:** 

Find US federal election candidates named Smith with office, party, state, district, cycle, and campaign identifiers.

## Input

```json
{
  "query": "smith",
  "maxResults": 3
}
```

## Output

```json
{
  "candidate_id": {
    "label": "Candidate Id",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "party": {
    "label": "Party",
    "format": "text"
  },
  "party_full": {
    "label": "Party Full",
    "format": "text"
  },
  "office": {
    "label": "Office",
    "format": "text"
  },
  "office_full": {
    "label": "Office Full",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "district": {
    "label": "District",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "incumbent_challenge": {
    "label": "Incumbent Challenge",
    "format": "text"
  },
  "election_years": {
    "label": "Election Years",
    "format": "text"
  },
  "has_raised_funds": {
    "label": "Has Raised Funds",
    "format": "text"
  },
  "principal_committees": {
    "label": "Principal Committees",
    "format": "text"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "scraped_at": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [FEC Candidates Scraper - US Election Records](https://apify.com/benthepythondev/fec-candidates-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/benthepythondev/fec-candidates-scraper) to learn more, explore other use cases, and run it yourself.