curl
curl "https://api.stockcontext.com/v2/governance?symbol=AAPL" \
-H "X-API-Key: $STOCKCONTEXT_API_KEY"{
"data": {
"as_of": "2026-06-12T21:43:29Z",
"asset_type": "stock",
"cache_age_seconds": 0,
"freshness": "end_of_day",
"governance": {
"accession": "0001308179-26-000008",
"basis": "def14a_ecd_xbrl",
"ceo_pay_ratio": {
"ceo_comp_usd": 74294811,
"median_employee_comp_usd": 139483,
"ratio": 533
},
"coverage_start": "2022-12-16",
"filed": "2026-01-08",
"form": "DEF 14A",
"pay_vs_performance": {
"columns": [
"fiscal_year_end",
"peo_actually_paid",
"neo_avg_actually_paid",
"total_shareholder_return",
"peer_group_tsr",
"net_income"
],
"currency_unit": "USD",
"order": "newest_first",
"rows": [
[
"2025-09-27",
108423733,
34125743,
233.88,
279.51,
112010000000
],
[
"2024-09-28",
168980568,
58633525,
207.59,
206.32,
93736000000
],
[
"2023-09-30",
106643588,
41980664,
155.24,
132.03,
96955000000
],
[
"2022-09-24",
128833021,
41564946,
135.59,
92.83,
99803000000
],
[
"2021-09-25",
311845801,
75307922,
131.69,
136.94,
94680000000
]
]
},
"peo_name": "Mr. Cook",
"voting_proposals": [
{
"description": "Election of Directors",
"number": 1,
"proposal_type": "director_election"
},
{
"description": "Ratification of Appointment of Independent Registered Public Accounting Firm",
"number": 2,
"proposal_type": "auditor_ratification"
},
{
"description": "Advisory Vote to Approve Executive Compensation",
"number": 3,
"proposal_type": "say_on_pay"
},
{
"description": "Approval of the Apple Inc.",
"number": 4,
"proposal_type": "company_proposal"
},
{
"description": "Shareholder Proposal",
"number": 5,
"proposal_type": "shareholder_proposal"
}
]
},
"market_status": "closed",
"symbol": "AAPL"
},
"schema_version": "2026-06-17.7"
}Governance and compensation API
Governance API for executive compensation and proxy voting facts from SEC proxy XBRL, including pay-versus-performance and CEO pay ratio.
GET
/
v2
/
governance
curl
curl "https://api.stockcontext.com/v2/governance?symbol=AAPL" \
-H "X-API-Key: $STOCKCONTEXT_API_KEY"{
"data": {
"as_of": "2026-06-12T21:43:29Z",
"asset_type": "stock",
"cache_age_seconds": 0,
"freshness": "end_of_day",
"governance": {
"accession": "0001308179-26-000008",
"basis": "def14a_ecd_xbrl",
"ceo_pay_ratio": {
"ceo_comp_usd": 74294811,
"median_employee_comp_usd": 139483,
"ratio": 533
},
"coverage_start": "2022-12-16",
"filed": "2026-01-08",
"form": "DEF 14A",
"pay_vs_performance": {
"columns": [
"fiscal_year_end",
"peo_actually_paid",
"neo_avg_actually_paid",
"total_shareholder_return",
"peer_group_tsr",
"net_income"
],
"currency_unit": "USD",
"order": "newest_first",
"rows": [
[
"2025-09-27",
108423733,
34125743,
233.88,
279.51,
112010000000
],
[
"2024-09-28",
168980568,
58633525,
207.59,
206.32,
93736000000
],
[
"2023-09-30",
106643588,
41980664,
155.24,
132.03,
96955000000
],
[
"2022-09-24",
128833021,
41564946,
135.59,
92.83,
99803000000
],
[
"2021-09-25",
311845801,
75307922,
131.69,
136.94,
94680000000
]
]
},
"peo_name": "Mr. Cook",
"voting_proposals": [
{
"description": "Election of Directors",
"number": 1,
"proposal_type": "director_election"
},
{
"description": "Ratification of Appointment of Independent Registered Public Accounting Firm",
"number": 2,
"proposal_type": "auditor_ratification"
},
{
"description": "Advisory Vote to Approve Executive Compensation",
"number": 3,
"proposal_type": "say_on_pay"
},
{
"description": "Approval of the Apple Inc.",
"number": 4,
"proposal_type": "company_proposal"
},
{
"description": "Shareholder Proposal",
"number": 5,
"proposal_type": "shareholder_proposal"
}
]
},
"market_status": "closed",
"symbol": "AAPL"
},
"schema_version": "2026-06-17.7"
}Authorizations
StockContext API key. Keys start with sctx_ and are sent on every REST request.
Query Parameters
Ticker symbol. Case-insensitive; share-class dots are normalized to dashes (BRK.B == BRK-B). Returns SYMBOL_UNKNOWN when the symbol is outside the supported universe.
Example:
"AAPL"
⌘I