Dashboard

Performance Measures

GET/api/executives/performance-measures

Stock Pro

Returns the performance measures that the company itself selected as most important for evaluating executive compensation, extracted from the pay-versus-performance table in DEF 14A proxy statements.

These are the KPIs that the board and compensation committee have chosen to link to executive pay — they reveal what management is actually being held accountable for. Common examples include revenue growth, operating margin, return on invested capital, and total shareholder return.

Each measure is reported per fiscal year, allowing tracking of how the company's self-selected performance metrics evolve over time.

Data source: SEC XBRL-tagged DEF 14A filings, pay-versus-performance table (Company-Selected Measure).

Get API key Try it live in the API explorer

Query parameters

Example request

curl 'https://api.stockfit.io/v1/api/executives/performance-measures?symbol=AAPL&cik=320193&cusip=037833100&composite_figi=BBG000B9XRY4&share_class_figi=BBG001S5N8V8' \
  -H 'Authorization: Bearer YOUR_API_TOKEN'

Responses

200 OK

Company-selected performance measures by fiscal year

Response schema

array of:
  • fiscalYear integer
  • measureName string

    Company-selected performance measure name

  • measureValue number | null

    The reported value for this measure

Example response

[
  {
    "fiscalYear": 2024,
    "measureName": "Revenue Growth",
    "measureValue": 0.08
  }
]

400 Bad Request

Invalid parameters or company not found

Response schema

  • error string

    Human-readable error message

Example response

{}

403 Forbidden

Feature not available on current plan

Response schema

  • error string

    Human-readable error message

Example response

{}