# SEC N-PX Proxy Vote Scraper by Filer

**Use case:** 

Search a fund manager's SEC Form N-PX filings and extract normalized institutional proxy votes with proposals, shares, and source links.

## Input

```json
{
  "filerQuery": "BlackRock",
  "filingUrls": [
    {
      "url": "https://www.sec.gov/Archives/edgar/data/1767306/000142050624001637/0001420506-24-001637-index.html"
    }
  ],
  "startDate": "2024-08-01",
  "endDate": "2024-08-31",
  "includeAmendments": true,
  "maxFilings": 1,
  "maxVotes": 100,
  "requestDelayMs": 150,
  "userAgent": "Automation-Lab SEC Form N-PX Scraper/1.0 (contact: support@automation-lab.example)"
}
```

## Output

```json
{
  "filerName": {
    "label": "Filer"
  },
  "filerCik": {
    "label": "Filer CIK"
  },
  "filingDate": {
    "label": "Filing date",
    "format": "date"
  },
  "accessionNumber": {
    "label": "Accession"
  },
  "issuerName": {
    "label": "Issuer"
  },
  "cusip": {
    "label": "CUSIP"
  },
  "meetingDate": {
    "label": "Meeting date",
    "format": "date"
  },
  "proposalText": {
    "label": "Proposal"
  },
  "proposalCategories": {
    "label": "Categories"
  },
  "sharesVoted": {
    "label": "Shares voted",
    "format": "number"
  },
  "sharesOnLoan": {
    "label": "Shares on loan",
    "format": "number"
  },
  "voteDirection": {
    "label": "Vote"
  },
  "voteShares": {
    "label": "Vote shares",
    "format": "number"
  },
  "managementRecommendation": {
    "label": "Management recommendation"
  },
  "filingIndexUrl": {
    "label": "Filing",
    "format": "link"
  },
  "voteDocumentUrl": {
    "label": "Vote XML",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [SEC Form N-PX Proxy Voting Scraper](https://apify.com/automation-lab/sec-form-n-px-proxy-voting-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/sec-form-n-px-proxy-voting-scraper) to learn more, explore other use cases, and run it yourself.