Skip to main content
POST
/
api
/
stooq
/
quotes
/
search
/stooq/quotes/search
curl --request POST \
  --url https://api.anysite.io/api/stooq/quotes/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "symbol": "<string>",
    "name": "<string>",
    "@type": "@stooq_search_result",
    "exchange": "<string>",
    "price": 123,
    "change_percent": 123
  }
]

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

symbol
string
required
name
string
required
@type
string
default:@stooq_search_result
exchange
string | null
price
number | null
change_percent
number | null