# House Disclosure 2023 Filings Scraper

**Use case:** 

Scrape 2023 US House financial disclosure filings. Get representative names, states and document links from official House records as clean JSON.

## Input

```json
{
  "maxItems": 5,
  "year": 2023,
  "filingTypeFilter": "O"
}
```

## Output

```json
{
  "prefix": {
    "label": "Prefix",
    "format": "text"
  },
  "firstName": {
    "label": "First Name",
    "format": "text"
  },
  "lastName": {
    "label": "Last Name",
    "format": "text"
  },
  "suffix": {
    "label": "Suffix",
    "format": "text"
  },
  "stateDistrict": {
    "label": "State District",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "district": {
    "label": "District",
    "format": "number"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "filingType": {
    "label": "Filing Type",
    "format": "text"
  },
  "filingTypeLabel": {
    "label": "Filing Type Label",
    "format": "text"
  },
  "filingDate": {
    "label": "Filing Date",
    "format": "text"
  },
  "docId": {
    "label": "Doc Id",
    "format": "number"
  },
  "documentUrl": {
    "label": "Document Url",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [US House Financial Disclosures Scraper | PFD Index](https://apify.com/parseforge/house-financial-disclosures-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/house-financial-disclosures-scraper) to learn more, explore other use cases, and run it yourself.