Skip to main content
Scraper API

What Is a Proxy Document? Definitions, Examples & SEC Filings [2026]

7 min read

Understanding the Term "Proxy Document"

The term "proxy document" is a polysemy—a word with multiple, distinct meanings depending on the industry. While the general definition of "proxy" involves acting on behalf of another, the specific documentation varies significantly between corporate law, healthcare, and internet technology.

1. The Corporate Context: SEC Proxy Statements (Form DEF 14A)

In the financial and legal world, "the proxy document" almost exclusively refers to the Proxy Statement.

What is it?

A Proxy Statement is a document filed with the U.S. Securities and Exchange Commission (SEC) and distributed to shareholders. It is used to solicit shareholder votes at annual meetings. Companies are required by law to provide this document to ensure investors make informed decisions without being physically present at the meeting.

Why is it important for Investors?

For investors and data analysts, the Proxy Statement is a goldmine of unstructured data. It reveals:

  • Executive Compensation: Salaries, bonuses, and stock options for top executives (CEO, CFO).
  • Board of Directors: Biographies of board members, potential conflicts of interest, and their qualifications.
  • Shareholder Proposals: Voting on issues ranging from environmental policy to corporate governance structure.
  • How to find a Proxy Document on EDGAR

    For financial data scraping, finding these documents is a common task. The SEC's EDGAR system houses these files.

    1. Visit the SEC EDGAR search tool. 2. Enter the Company Ticker or CIK. 3. Filter for 'DEF 14A' filings. * *DEF 14A* is the specific code for the definitive proxy statement. 4. Access the 'Documents' table to find the full HTML or PDF submission.

    *Note: 'PREM 14A' refers to preliminary materials, while 'DEF 14A' is the final, definitive document used for the meeting.*

    Example: Scraping Proxy Data with Python

    As a web scraping expert, you might need to extract executive salary data from these filings. The SEC EDGAR API allows for structured querying, but many developers still parse the HTML documents.

    Here is a conceptual Python snippet using requests and BeautifulSoup to locate a DEF 14A URL (assuming you have already queried the EDGAR directory).

    import requests
    

    from bs4 import BeautifulSoup

    def get_proxy_document_url(cik, year): # CIK must be 10 digits, padded with leading zeros cik = str(cik).zfill(10)

    # EDGAR browse endpoint url = f"https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK={cik}&type=DEF+14A&dateb=&owner=exclude&count=100"

    headers = {'User-Agent': 'Your Name contact@yourdomain.com'} response = requests.get(url, headers=headers)

    if response.status_code == 200: soup = BeautifulSoup(response.content, 'html.parser') # Logic to parse the table and find documents for the specific year # Returns the link to the primary document documents_table = soup.find('table', class_='tableFile2') for row in documents_table.find_all('tr')[1:]: cells = row.find_all('td') filing_date = cells[3].text.strip() if filing_date.startswith(str(year)): doc_link = "https://www.sec.gov" + cells[1].a['href'] return doc_link return None

    2. The Medical Context: Healthcare Proxy (Advance Directive)

    Outside of Wall Street, the most common "proxy document" is a Durable Power of Attorney for Health Care, often called a Healthcare Proxy.

    What is it?

    This is a legal document that allows an individual (the principal) to appoint another person (the agent or proxy) to make healthcare decisions if the principal becomes unable to communicate their wishes.

    Critical Components

  • Agent Identification: Clearly names the person authorized to make decisions.
  • Scope of Authority: Can include decisions about life support, resuscitation (DNR orders), and organ donation.
  • Alternate Agents: Names backup proxies if the primary choice is unavailable.

Japanese Equivalent

Search trends frequently ask about the Japanese equivalent. In Japan, the concept is legally encapsulated in "Any Yakuin Nin" (任意代理人) for general matters, but specifically for end-of-life care, it aligns with "Jussho Hoyu Ni Kansuru Houkoku" or guidelines regarding "Respect for the autonomy of persons with decision-making capacity". While the U.S. uses a single designated "proxy" form, Japan relies heavily on family consensus and advance directive notes, though legally binding powers of attorney are becoming more common.

3. The Technical Context: Web Scraping and API Proxies

While the term "proxy document" is not standard terminology in networking (where we usually say "Proxy Configuration"), it can refer to documentation files describing how to route traffic. In web scraping, we often deal with:

1. Proxy Configuration Files: JSON or YAML files that define the IP rotation strategy (e.g., config.json containing proxy_host, proxy_port, proxy_protocol). 2. The PAC File (Proxy Auto-Config): A javascript file used by browsers to automatically determine the appropriate proxy for a given URL.

Comparison: Legal Proxy vs. Technical Proxy

To avoid confusion, here is a structural comparison of how the term "Proxy" is used in these different fields.

| Feature | Corporate / Legal Proxy (DEF 14A) | Healthcare Proxy | Technical Proxy (Networking) | | :--- | :--- | :--- | :--- | | Primary Function | Authorization to vote a share | Authorization to make medical decisions | Intermediary server routing traffic | | Document Format | SEC Filing (PDF/HTML/XML) | Legal Form (PDF/Paper) | Config File (JSON/YAML/PAC) | | Key Data Point | Board Members, Executive Pay | Agent Name, DNR Status | IP Address, Port, Protocol | | Regulatory Body | Securities and Exchange Commission (SEC) | State Health Departments | IETF (Internet Engineering Task Force) | | Analogy | Giving your friend your ballot to fill out | Giving a friend your medical power of attorney | Asking a friend to deliver your mail |

4. Why is this distinction important for Web Scrapers?

As a reader of ProxyFAQs, you might be here looking for information on how to scrape financial data. Understanding the difference between the legal document and the technology is crucial.

If you are building an ETL (Extract, Transform, Load) pipeline to monitor insider trading: 1. You need to target the DEF 14A document. 2. You must respect robots.txt and the SEC's rate limits (using Residential Proxies to avoid IP bans). 3. You are technically scraping a "proxy document" (the legal file) via a "proxy server" (the technology).

Practical Tip: Never confuse the two. Using a rotating proxy to scrape a healthcare proxy document is ethically gray (depending on PII laws) and technically complex due to OCR requirements. Conversely, parsing a JSON config file (technical proxy) requires standard Python libraries, while scraping a DEF 14A (legal proxy) requires advanced NLP (Natural Language Processing) because the data is often in unstructured tables.

Summary of Key Takeaways

1. Corporate Finance: A Proxy Statement (DEF 14A) is a mandatory SEC filing revealing executive pay and board structure. 2. Healthcare: A Healthcare Proxy is a legal form appointing a decision-maker for medical incapacitation. 3. Technology: While "proxy document" isn't standard industry slang for tech, it usually refers to configuration files or PAC files used to route traffic.

If you are looking for the financial document, head to the SEC EDGAR database. If you need a medical template, consult a local estate attorney. If you are building a scraper, you likely need the DEF 14A.

Share: