F4FinData4AI

Financials

GET
/financials/income-statements

Authorization

apiKeyAuth
X-API-Key<token>

In: header

Query Parameters

ticker*string

股票代码,如 AAPL

period?string

报告期口径

Default"annual"

Value in

  • "annual"
  • "quarterly"
limit?integer
Range1 <= value <= 200
Default50
cursor?string

上一页返回的 next_cursor

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/financials/income-statements?ticker=string"
{  "items": [    {      "date": "2025-09-27",      "period": "annual",      "reporting_currency": "USD",      "revenue": 416160000000,      "cost_of_revenue": 218400000000,      "gross_profit": 197760000000,      "gross_margin": 47.5,      "operating_expenses": 60120000000,      "operating_income": 137640000000,      "operating_margin": 33.1,      "net_income": 112010000000,      "net_margin": 26.9,      "eps": 7.42,      "eps_diluted": 7.36,      "shares_outstanding": 15204100000,      "ebitda": 149300000000,      "filing_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000073/aapl-20250927.htm",      "filing_type": "10-K"    }  ],  "next_cursor": null}
GET
/financials/balance-sheets

Authorization

apiKeyAuth
X-API-Key<token>

In: header

Query Parameters

ticker*string

股票代码,如 AAPL

period?string

报告期口径

Default"annual"

Value in

  • "annual"
  • "quarterly"
limit?integer
Range1 <= value <= 200
Default50
cursor?string

上一页返回的 next_cursor

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/financials/balance-sheets?ticker=string"
{  "items": [    {      "date": "2025-09-27",      "period": "annual",      "reporting_currency": "USD",      "total_assets": 364980000000,      "total_current_assets": 152990000000,      "cash_and_equivalents": 30140000000,      "total_liabilities": 293100000000,      "total_current_liabilities": 165400000000,      "long_term_debt": 85750000000,      "total_equity": 71880000000,      "retained_earnings": -8420000000,      "total_debt": 102300000000,      "net_debt": 72160000000,      "book_value_per_share": 4.73,      "filing_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000073/aapl-20250927.htm",      "filing_type": "10-K"    }  ],  "next_cursor": null}
GET
/financials/cash-flow-statements

Authorization

apiKeyAuth
X-API-Key<token>

In: header

Query Parameters

ticker*string

股票代码,如 AAPL

period?string

报告期口径

Default"annual"

Value in

  • "annual"
  • "quarterly"
limit?integer
Range1 <= value <= 200
Default50
cursor?string

上一页返回的 next_cursor

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/financials/cash-flow-statements?ticker=string"
{  "items": [    {      "date": "2025-09-27",      "period": "annual",      "reporting_currency": "USD",      "operating_cash_flow": 122100000000,      "capital_expenditure": -11200000000,      "free_cash_flow": 110900000000,      "investing_cash_flow": -9800000000,      "financing_cash_flow": -100600000000,      "dividends_paid": -15600000000,      "stock_repurchased": -78200000000,      "net_change_in_cash": 11700000000,      "filing_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000073/aapl-20250927.htm",      "filing_type": "10-K"    }  ],  "next_cursor": null}
GET
/financials/segmented

Authorization

apiKeyAuth
X-API-Key<token>

In: header

Query Parameters

ticker*string

股票代码,如 AAPL

segment_type*string

Value in

  • "business"
  • "geographic"
period?string

报告期口径

Default"annual"

Value in

  • "annual"
  • "quarterly"
limit?integer
Range1 <= value <= 200
Default50
cursor?string

上一页返回的 next_cursor

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/financials/segmented?ticker=string&segment_type=business"
{  "items": [    {      "date": "2025-09-27",      "period": "annual",      "segment_type": "business",      "reporting_currency": "USD",      "segments": [        {          "name": "iPhone",          "revenue": 209800000000,          "share_of_total": 50.4        },        {          "name": "Services",          "revenue": 108600000000,          "share_of_total": 26.1        },        {          "name": "Mac",          "revenue": 31200000000,          "share_of_total": 7.5        }      ]    }  ],  "next_cursor": null}