Skip to main content
POST
/
api
/
nasdaq
/
quotes
/
search
/nasdaq/quotes/search
curl --request POST \
  --url https://api.anysite.io/api/nasdaq/quotes/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "@nasdaq_search_result",
    "exchange": "<string>",
    "asset_class": "<string>",
    "industry": "<string>",
    "region": "<string>",
    "is_nasdaq_100": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search query — ticker symbol or company name

Minimum string length: 1
count
integer
required

Number of results to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
name
string
required
@type
string
default:@nasdaq_search_result
exchange
string | null
asset_class
string | null
industry
string | null
region
string | null
is_nasdaq_100
boolean
default:false