Skip to main content
POST
/
api
/
marketwatch
/
quotes
/marketwatch/quotes
curl --request POST \
  --url https://api.anysite.io/api/marketwatch/quotes \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbol": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "charting_symbol": "<string>",
    "@type": "@marketwatch_quote",
    "name": "<string>",
    "type": "<string>",
    "isin": "<string>",
    "cusip": "<string>",
    "sedol": "<string>",
    "exchange": "<string>",
    "exchange_code": "<string>",
    "country": "<string>",
    "exchange_delay": 123,
    "currency": "<string>",
    "market_state": "<string>",
    "price": 123,
    "open": 123,
    "day_high": 123,
    "day_low": 123,
    "change": 123,
    "change_percent": 123,
    "volume": 123,
    "previous_close": 123,
    "quote_at": "<string>",
    "after_hours_price": 123,
    "after_hours_change": 123,
    "after_hours_change_percent": 123,
    "fifty_two_week_high": 123,
    "fifty_two_week_low": 123,
    "fifty_day_average": 123,
    "two_hundred_day_average": 123,
    "market_cap": 123,
    "pe_ratio": 123,
    "eps": 123,
    "shares_outstanding": 123,
    "dividend_yield": 123,
    "annualized_dividend": 123,
    "last_dividend": 123,
    "ex_dividend_date": "<string>",
    "beta": 123,
    "description": "<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"

"SPX"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
charting_symbol
string
required
@type
string
default:@marketwatch_quote
name
string | null
type
string | null
isin
string | null
cusip
string | null
sedol
string | null
exchange
string | null
exchange_code
string | null
country
string | null
exchange_delay
integer | null
currency
string | null
market_state
string | null
price
number | null
open
number | null
day_high
number | null
day_low
number | null
change
number | null
change_percent
number | null
volume
number | null
previous_close
number | null
quote_at
string | null
after_hours_price
number | null
after_hours_change
number | null
after_hours_change_percent
number | null
fifty_two_week_high
number | null
fifty_two_week_low
number | null
fifty_day_average
number | null
two_hundred_day_average
number | null
market_cap
number | null
pe_ratio
number | null
eps
number | null
shares_outstanding
number | null
dividend_yield
number | null
annualized_dividend
number | null
last_dividend
number | null
ex_dividend_date
string | null
beta
number | null
description
string | null