Skip to main content
POST
/
api
/
marketwatch
/
markets
/
overview
/marketwatch/markets/overview
curl --request POST \
  --url https://api.anysite.io/api/marketwatch/markets/overview \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '{
  "timeout": 300
}'
[
  {
    "@type": "@marketwatch_market_instrument",
    "name": "<string>",
    "charting_symbol": "<string>",
    "region": "<string>",
    "price": 123,
    "change": 123,
    "change_percent": 123,
    "is_market_closed": false,
    "updated_at": "<string>",
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@marketwatch_market_instrument
name
string | null
charting_symbol
string | null
region
string | null
price
number | null
change
number | null
change_percent
number | null
is_market_closed
boolean
default:false
updated_at
string | null
url
string | null