Skip to main content
POST
/
api
/
nasdaq
/
quotes
/
screener
/nasdaq/quotes/screener
curl --request POST \
  --url https://api.anysite.io/api/nasdaq/quotes/screener \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "@nasdaq_screener_stock",
    "price": 123,
    "change": 123,
    "change_percent": 123,
    "volume": 123,
    "market_cap": 123,
    "sector": "<string>",
    "industry": "<string>",
    "country": "<string>",
    "ipo_year": 123,
    "alias": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Maximum number of stocks to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
exchange
enum<string> | null

Filter by listing exchange

Available options:
NASDAQ,
NYSE,
AMEX
market_cap
enum<string> | null

Filter by market capitalization tier

Available options:
mega,
large,
mid,
small,
micro,
nano
sector
enum<string> | null

Filter by sector

Available options:
Basic Materials,
Consumer Discretionary,
Consumer Staples,
Energy,
Finance,
Health Care,
Industrials,
Miscellaneous,
Real Estate,
Technology,
Telecommunications,
Utilities
region
enum<string> | null

Filter by region

Available options:
africa,
asia,
australia_and_south_pacific,
caribbean,
europe,
middle_east,
north_america,
south_america
recommendation
enum<string> | null

Filter by analyst recommendation

Available options:
strong_buy,
buy,
hold,
sell,
strong_sell

Response

Successful Response

id
string
required
name
string
required
@type
string
default:@nasdaq_screener_stock
price
number | null
change
number | null
change_percent
number | null
volume
integer | null
market_cap
integer | null
sector
string | null
industry
string | null
country
string | null
ipo_year
integer | null
alias
string | null