Dashboard

Per-share metrics chart

GET/api/financials/chart/per-share

Free Starter Stock ETF Pro

Returns chart-ready data for per-share financial metrics over time: EPS, revenue per share, book value per share, and free cash flow per share. Periods are sorted ascending. Uses diluted weighted average shares outstanding when available.

Get API key Try it live in the API explorer

Query parameters

Example request

curl 'https://api.stockfit.io/v1/api/financials/chart/per-share?symbol=AAPL&cik=320193&cusip=037833100&composite_figi=BBG000B9XRY4&share_class_figi=BBG001S5N8V8&currency=USD' \
  -H 'Authorization: Bearer YOUR_API_TOKEN'

Responses

200 OK

Series-oriented chart data with periods sorted ascending

Response schema

  • periods array of string
  • series array of object

    Per-share metric series (EPS, Revenue Per Share, Book Value Per Share, Free Cash Flow Per Share)

    array of:
    • name string
    • data array of number | null

Example response

{
  "periods": [
    "2021-09-25",
    "2022-09-24",
    "2023-09-30",
    "2024-09-28"
  ],
  "series": [
    {
      "name": "EPS",
      "data": [
        5.67,
        6.15,
        6.16,
        6.08
      ]
    }
  ]
}

400 Bad Request

Invalid parameters or symbol 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

{}