Owner Earnings

Retrieve source-backed and estimated owner-earnings metrics, yield, and growth for a symbol.

Use this endpoint when you want a Buffett-style cash-earnings view that combines source coverage with a transparent estimated fallback.

Endpoint

GET /stocks/{symbol}/owner-earnings
Test request
/stocks/AAPL/owner-earnings

You can inspect the health endpoint without a key, but most endpoints require one. Create a free account to run the full workflow.

Send a request to view the response.

Authentication

Required.

Authorization: Bearer <your_api_key>

Path Parameters

  • symbol: ticker or symbol to resolve

Response Notes

  • V1 returns both:
    • source-backed owner_earnings_source
    • estimated owner_earnings_estimated
  • The estimated version currently uses a conservative maintenance-capex assumption:
    • maintenance_capex_estimate = reported_capex
    • owner_earnings_estimated = operating_cash_flow - maintenance_capex_estimate
  • owner_earnings_yield uses the best available owner-earnings value divided by current market cap.
  • Growth fields currently come from imported source growth signals.

Example Request

curl -H "Authorization: Bearer $your_api_key" \
  "https://api.apifinance.ai/stocks/AAPL/owner-earnings"

Next step

Run this endpoint with your own API key

Use the playground to inspect the response first, then create a key and move into implementation once the payload fits your product.