Skip to main content
POST
/
api
/
google
/
finance
/
quotes
/
financials
/google/finance/quotes/financials
curl --request POST \
  --url https://api.anysite.io/api/google/finance/quotes/financials \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "ticker": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "fiscal_year": 123,
    "fiscal_quarter": 123,
    "@type": "@google_finance_financials",
    "period_end_date": "<string>",
    "currency": "<string>",
    "revenue": 123,
    "cost_of_revenue": 123,
    "gross_profit": 123,
    "operating_income": 123,
    "net_income": 123,
    "eps": 123,
    "gross_margin": 123,
    "operating_margin": 123,
    "net_margin": 123,
    "total_assets": 123,
    "shares_outstanding": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
ticker
string
required

Ticker in SYMBOL:EXCHANGE form

Pattern: ^[A-Za-z0-9.\-]{1,15}:[A-Za-z0-9.\-]{1,15}$
Examples:

"GOOGL:NASDAQ"

"AAPL:NASDAQ"

"TSLA:NASDAQ"

count
integer
required

Maximum number of fiscal quarters to return, most recent first

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

fiscal_year
integer
required
fiscal_quarter
integer
required
@type
string
default:@google_finance_financials
period_end_date
string | null
currency
string | null
revenue
number | null
cost_of_revenue
number | null
gross_profit
number | null
operating_income
number | null
net_income
number | null
eps
number | null
gross_margin
number | null
operating_margin
number | null
net_margin
number | null
total_assets
number | null
shares_outstanding
integer | null