Skip to main content
POST
/
api
/
stooq
/
quotes
/stooq/quotes
curl --request POST \
  --url https://api.anysite.io/api/stooq/quotes \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbol": "AAPL.US",
  "timeout": 300
}
'
[
  {
    "symbol": "<string>",
    "@type": "@stooq_quote",
    "name": "<string>",
    "date": "<string>",
    "time": "<string>",
    "open": 123,
    "high": 123,
    "low": 123,
    "close": 123,
    "volume": 123,
    "previous": 123,
    "bid": 123,
    "ask": 123,
    "turnover": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
symbol
string
required

Ticker symbol or list of symbols

Minimum string length: 1
Example:

"AAPL.US"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

symbol
string
required
@type
string
default:@stooq_quote
name
string | null
date
string | null
time
string | null
open
number | null
high
number | null
low
number | null
close
number | null
volume
integer | null
previous
number | null
bid
number | null
ask
number | null
turnover
number | null