Skip to main content
POST
/
api
/
nasdaq
/
quotes
/nasdaq/quotes
curl --request POST \
  --url https://api.anysite.io/api/nasdaq/quotes \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbol": "<string>",
  "timeout": 300,
  "asset_class": "stocks"
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "@nasdaq_quote",
    "exchange": "<string>",
    "asset_class": "<string>",
    "stock_type": "<string>",
    "is_nasdaq_listed": false,
    "is_nasdaq_100": false,
    "market_status": "<string>",
    "price": 123,
    "change": 123,
    "change_percent": 123,
    "bid": 123,
    "ask": 123,
    "bid_size": 123,
    "ask_size": 123,
    "volume": 123,
    "previous_close": 123,
    "fifty_two_week_high": 123,
    "fifty_two_week_low": 123,
    "market_cap": 123,
    "average_volume": 123,
    "sector": "<string>",
    "industry": "<string>",
    "one_year_target": 123,
    "annualized_dividend": 123,
    "dividend_yield": 123,
    "ex_dividend_date": "<string>",
    "dividend_payment_date": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
symbol
string
required

Ticker symbol

Minimum string length: 1
Examples:

"AAPL"

"TSLA"

"QQQ"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
asset_class
enum<string>
default:stocks

Asset class of the symbol

Available options:
stocks,
etf,
index

Response

Successful Response

id
string
required
name
string
required
@type
string
default:@nasdaq_quote
exchange
string | null
asset_class
string | null
stock_type
string | null
is_nasdaq_listed
boolean
default:false
is_nasdaq_100
boolean
default:false
market_status
string | null
price
number | null
change
number | null
change_percent
number | null
bid
number | null
ask
number | null
bid_size
integer | null
ask_size
integer | null
volume
number | null
previous_close
number | null
fifty_two_week_high
number | null
fifty_two_week_low
number | null
market_cap
integer | null
average_volume
integer | null
sector
string | null
industry
string | null
one_year_target
number | null
annualized_dividend
number | null
dividend_yield
number | null
ex_dividend_date
string | null
dividend_payment_date
string | null