Skip to main content
POST
/
api
/
marketwatch
/
quotes
/
search
/marketwatch/quotes/search
curl --request POST \
  --url https://api.anysite.io/api/marketwatch/quotes/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "charting_symbol": "<string>",
    "@type": "@marketwatch_search_result",
    "name": "<string>",
    "exchange": "<string>",
    "exchange_code": "<string>",
    "country": "<string>",
    "isin": "<string>",
    "type": "<string>",
    "is_future": 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
charting_symbol
string
required
@type
string
default:@marketwatch_search_result
name
string | null
exchange
string | null
exchange_code
string | null
country
string | null
isin
string | null
type
string | null
is_future
boolean
default:false