Skip to main content
POST
/
api
/
investing
/
quotes
/
financials
/investing/quotes/financials
curl --request POST \
  --url https://api.anysite.io/api/investing/quotes/financials \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "quote": "<string>",
  "timeout": 300,
  "statement": "income-statement",
  "period": "annual"
}
'
[
  {
    "statement": "<string>",
    "@type": "@investing_financials",
    "period": "<string>",
    "company_name": "<string>",
    "currency_id": 123,
    "reports": [],
    "ratios": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
quote
string
required

Equity to look up: a ticker symbol or name ('AAPL'), a section path, or an instrument URL.

Minimum string length: 1
Examples:

"AAPL"

"/equities/microsoft-corp"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
statement
enum<string>
default:income-statement

Financial statement to return

Available options:
income-statement,
balance-sheet,
cash-flow,
ratios
period
enum<string>
default:annual

Reporting period (ignored for ratios)

Available options:
annual,
quarterly

Response

Successful Response

statement
string
required
@type
string
default:@investing_financials
period
string | null
company_name
string | null
currency_id
integer | null
reports
InvestingFinancialReport · object[]
ratios
InvestingFinancialIndicator · object[]