Skip to main content
POST
/
api
/
google
/
finance
/
quotes
/google/finance/quotes
curl --request POST \
  --url https://api.anysite.io/api/google/finance/quotes \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "ticker": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "symbol": "<string>",
    "exchange": "<string>",
    "name": "<string>",
    "price": 123,
    "@type": "@google_finance_quote",
    "change": 123,
    "change_percent": 123,
    "previous_close": 123,
    "day_high": 123,
    "day_low": 123,
    "fifty_two_week_high": 123,
    "fifty_two_week_low": 123,
    "market_cap": 123,
    "volume": 123,
    "average_volume": 123,
    "pe_ratio": 123,
    "dividend_yield": 123,
    "shares_outstanding": 123,
    "currency": "<string>",
    "country": "<string>",
    "industry": "<string>",
    "description": "<string>",
    "ceo": "<string>",
    "employees": 123,
    "founded_year": 123,
    "headquarters": "<string>",
    "website": "<string>",
    "next_earnings_date": "<string>",
    "image": "<string>"
  }
]

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"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
symbol
string
required
exchange
string
required
name
string
required
price
number
required
@type
string
default:@google_finance_quote
change
number | null
change_percent
number | null
previous_close
number | null
day_high
number | null
day_low
number | null
fifty_two_week_high
number | null
fifty_two_week_low
number | null
market_cap
number | null
volume
integer | null
average_volume
integer | null
pe_ratio
number | null
dividend_yield
number | null
shares_outstanding
integer | null
currency
string | null
country
string | null
industry
string | null
description
string | null
ceo
string | null
employees
integer | null
founded_year
integer | null
headquarters
string | null
website
string | null
next_earnings_date
string | null
image
string | null