Skip to main content
Scraper API

What Is a Company Proxy Statement? The Ultimate Guide to SEC DEF 14A [2026]

8 min read

Introduction

In the world of corporate finance and securities analysis, the proxy statement reigns supreme as the primary document of corporate governance. Unlike the 10-K (Annual Report), which focuses on financial performance, or the 10-Q (Quarterly Report), which tracks short-term earnings, the proxy statement—filed as DEF 14A—reveals the mechanics of power, influence, and capital allocation within a firm.

For a senior data engineer or web scraping expert, the proxy statement represents a goldmine of unstructured text data. It contains the nuanced details of executive compensation packages, potential conflicts of interest, and the strategic priorities of the Board of Directors.

What is a Company Proxy Statement?

Technically defined, a company proxy statement is a document filed with the U.S. Securities and Exchange Commission (SEC) and distributed to shareholders. Its purpose is to provide information necessary for shareholders to make informed decisions on matters that will be voted on at the upcoming annual meeting.

Because most individual shareholders cannot attend the annual meeting in person, the company provides a "proxy"—a authorization for the company's management to vote on the shareholder's behalf. The statement ensures this vote is informed.

The Legal Form: DEF 14A

When scraping or searching for this data, it is crucial to look for the form number DEF 14A.

  • DEF: Definitive Proxy Statement (as opposed to a preliminary PREM 14A).
  • 14A: Section 14A of the Securities Exchange Act of 1934, which governs the solicitation of proxies.
  • Core Components of a Proxy Statement

    The information within a DEF 14A is highly structured, though the formatting varies by company (making it a challenging target for web scraping).

    1. Proposals and Voting Matters

    This section outlines exactly what shareholders are voting on. It typically includes:

  • Election of Directors: Biographies of current board members and nominees.
  • Executive Compensation: The *Compensation Discussion and Analysis (CD&A)* section.
  • Ratification of Auditors: Voting on the external accounting firm.
  • Shareholder Proposals: Non-binding recommendations submitted by investors.
  • 2. Director Compensation

    How are board members paid? This section details:

  • Retainer fees.
  • Stock awards and equity grants.
  • Committee fees (for serving on Audit, Compensation, or Governance committees).
  • 3. Executive Compensation (CD&A)

    This is often the most scrutinized section. The Compensation Discussion and Analysis (CD&A) provides:

  • Salary and Bonuses: Base cash compensation.
  • Grant Date Value: The value of stock options and Restricted Stock Units (RSUs) granted during the fiscal year.
  • Pension Benefits: Change in pension value and nonqualified deferred compensation earnings.
  • 4. Ownership Structure

    The proxy statement details the ownership of:

  • Beneficial Owners: Major stakeholders (often institutional investors like BlackRock or Vanguard).
  • Management: Direct and indirect ownership by CEOs, CFOs, and other named executive officers (NEOs).
  • Where to Find a Company Proxy Statement

    Locating these documents is the first step in any data acquisition pipeline. There are three primary methods, ranging from manual browsing to programmatic scraping.

    Method 1: SEC EDGAR Database (The Authoritative Source)

    The Electronic Data Gathering, Analysis, and Retrieval (EDGAR) system is the definitive repository.

  • For Foreign Companies: If you are looking for how to find a foreign company's proxy statement, you must search for their 20-F (Annual Report) or specific 6-K filings. Foreign issuers (FPIs) often have different governance rules but must still provide proxy-related information to ADR holders.
  • Method 2: Company Investor Relations (IR) Websites

    Most public companies maintain an IR portal.

  • Structure: Usually found under investors.company.com/sec-filings or /governance.
  • Pros: Human-readable HTML.
  • Cons: URL structures vary wildly, making broad web scraping difficult without robust heuristics.
  • Method 3: Aggregator Platforms

    Bloomberg, Reuters, and Morningstar scrape and normalize this data.

    Technical Comparison: 10-K vs. Proxy Statement

    To understand the specific utility of the proxy statement, it helps to compare it against the 10-K. Both cover the fiscal year, but their data points differ significantly.

    | Feature | 10-K (Annual Report) | Proxy Statement (DEF 14A) | | :--- | :--- | :--- | | Primary Focus | Financial Health & Risk | Governance & Compensation | | Audited | Yes (Financial Statements) | No (Unaudited Disclosures) | | Filing Deadline | 60-90 days after year-end | Preliminary proxy due ~40 days prior to meeting | | Key Data Point | Revenue, Net Income, Debt | CEO Pay Ratio, Director Bios | | Use Case for Scrapers | Risk Modeling | Executive Benchmarking |

    How to Acquire a Company Proxy Statement (Programmatic Approach)

    For data scientists and financial analysts, manually downloading PDFs is inefficient. We recommend an automated approach using Python.

    1. Using the SEC EDGAR API

    The SEC provides a JSON-based API for searching filings. While they do not provide the *content* via API (only the metadata), you can programmatically discover the filing URL.

    Python Example: Finding a DEF 14A URL

    *Note: As of 2025, the SEC requires a User-Agent header identifying your application.*

    import requests
    

    import json

    def get_proxy_statement_url(ticker, year): """ Searches for the most recent DEF 14A filing for a given ticker. """ # Step 1: Get CIK (Central Index Key) for the Ticker # The SEC mapping is usually lowercased ticker mapped to CIK ticker_url = f"https://www.sec.gov/files/edgar/data/company_tickers.json"

    headers = { 'User-Agent': 'MyCompanyName DataScrape/1.0 (contact@email.com)', 'Accept-Encoding': 'gzip, deflate' }

    # 1. Resolve Ticker to CIK (pseudocode for brevity) # In production, cache the company_tickers.json response locally. # cik = lookup_cik(ticker)

    # 2. Fetch Submissions for the CIK # This returns a JSON list of recent filings (Filing History) # cik = "0000320193" # Example for Apple # submissions_url = f"https://data.sec.gov/submissions/CIK{cik}.json"

    # 3. Filter for 'DEF 14A' and Year # Loop through 'filings']['recent'] and find form='DEF 14A' # Extract 'primaryDocument' and construct the URL: # base_url = f"https://www.sec.gov/Archives/edgar/data/{cik}/{accession_no}/{primary_doc}.txt"

    return "calculated_document_url"

    2. Scraping Strategies

    Once you have the URL, the document is usually a text file containing the entire submission, including HTML. Parsing this requires handling noisy headers/footers.

  • Library: BeautifulSoup or lxml for HTML parsing.
  • Regex: Use Regular Expressions to clean out the SEC headers (everything before tags).
  • Data Extraction: Look for tags. The Summary Compensation Table is a prime target, usually formatted as an HTML table with headers: Name, Salary, Bonus, Stock Awards, etc.

    What to Look For (Analytical Use Cases)

    When analyzing a company proxy statement, investors and algorithms look for specific red flags or signals.

    1. Executive Compensation vs. Performance

    Does the CEO's pay correlate with stock price performance? A scraper can extract the "Named Executive Officers" (NEO) table and compare the "Total Compensation" column against the fiscal year's Return on Equity (ROE).

    2. Related Party Transactions

    This section reveals if the company is doing business with the CEO's other companies (e.g., a CEO renting a private jet to the corporation). This is a major governance red flag often found buried in the proxy.

    3. Director Independence

    Are the directors truly independent? The proxy must disclose if any directors have family relationships or business ties to the management. This data is crucial for ESG (Environmental, Social, and Governance) scoring models.

    4. How to Cite a Proxy Statement

    For researchers using this data in reports, the standard citation format is:

  • *Company Name* (Year). *Definitive Proxy Statement*. Form DEF 14A. Washington, D.C.: Securities and Exchange Commission.
  • Advanced Topic: How to Acquire a Company *Without* a Proxy

    The PAA (People Also Ask) data suggests queries about "how to acquire a company without proxy." In the context of corporate finance (not web scraping), this refers to a Takeover Bid or Tender Offer.

    Typically, acquiring a company requires a 51% vote of shareholders (proxy solicitation). However, a buyer can bypass the standard proxy vote process by making a direct Tender Offer to shareholders:

    1. Hostile Takeover: The bidder goes directly to shareholders with a cash premium for their shares. 2. Consent Solicitation: A slightly different mechanism where shareholders sign a consent card rather than a proxy card.

    If a sufficient number of shareholders tender their shares, the acquirer gains control *without* the company's management ever holding a proxy vote to approve the merger.

    Share: