SEC filings & market structure
Proxy Filings (14A)
Returns Schedule 14A proxy filings — the document public companies send shareholders ahead of annual or special meetings. Each record is one filing carrying executive compensation tables, board nominations, shareholder proposals, auditor info, and voting matters.
Endpoint
GET /v1/proxy-filingsSourceSEC Schedule 14A
Authx-api-key — a free key works
What it returns
One record per result. Fields (from a live response):
- Identity —
company_cik,company_name - Subject —
ticker - Dates —
filing_date,scraped_at,period_of_report - Provenance —
sec_filing_url,data_source,accession_number,primary_document_url - Details —
is_additional_materials,filing_type,is_merger_related,id,is_amendment
Filters
| ticker | Stock symbol filter, e.g. 'AAPL'. Case-insensitive. |
| company_cik | SEC CIK number (10-digit, padded). Alternative to ticker. |
| filing_type | Exact filing-type filter. Use 'DEFM14A' for M&A-vote proxies only, 'DEF 14A' for annual proxies only. |
| is_merger_related | Convenience flag: filter to DEFM14A only. |
| is_amendment | Convenience flag: filter to DEFR14A (revised) only. |
| since | ISO date (YYYY-MM-DD). Only records on or after this date. |
| until | ISO date (YYYY-MM-DD). Only records on or before this date. |
| sort_by | Default filing_date. |
| sort_order | Default desc. |
| limit | Default 50, max 500. |
Example request
curl "https://api.keyvex.com/v1/proxy-filings?ticker=AAPL&limit=1" \
-H "x-api-key: YOUR_KEY"
Response
{
"results": [
{
"ticker": "XTNT",
"is_additional_materials": false,
"sec_filing_url": "https://www.sec.gov/Archives/edgar/data/1453593/000149315226029699",
"filing_date": "2026-06-23",
"data_source": "SEC_EDGAR_DEF14A",
"accession_number": "0001493152-26-029699",
"primary_document_url": "https://www.sec.gov/Archives/edgar/data/1453593/000149315226029699/formdef14a.htm",
"company_cik": "0001453593",
"scraped_at": "2026-06-23T11:15:30.748Z",
"company_name": "Xtant Medical Holdings, Inc.",
"filing_type": "DEF 14A",
"is_merger_related": false,
"id": "0001493152-26-029699",
"is_amendment": false,
"period_of_report": "2026-06-23"
}
],
"count": 1,
"has_more": true
}
Example questions you can answer
- Annual-meeting proxies (DEF 14A) for a company.
- Merger-vote proxies in a date range.
Related datasets
Query Proxy Filings (14A) from your AI
Hand any AI your key + the OpenAPI spec and it can pull this dataset directly. Free key = full data, 60 requests/day.
Get a free key OpenAPI spec → REST docs →