Skip to main content
POST
/
api
/
tradingview
/
quotes
/
search
/tradingview/quotes/search
curl --request POST \
  --url https://api.anysite.io/api/tradingview/quotes/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "symbol": "<string>",
    "@type": "@trading_view_search_result",
    "full_symbol": "<string>",
    "description": "<string>",
    "type": "<string>",
    "typespecs": [],
    "exchange": "<string>",
    "exchange_name": "<string>",
    "country": "<string>",
    "currency": "<string>",
    "image": "<string>",
    "isin": "<string>",
    "cusip": "<string>",
    "cik": "<string>",
    "is_primary_listing": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search text — ticker, company name, ISIN, CUSIP, or CIK

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
@type
string
default:@trading_view_search_result
full_symbol
string | null
description
string | null
type
string | null
typespecs
string[]
exchange
string | null
exchange_name
string | null
country
string | null
currency
string | null
image
string | null
isin
string | null
cusip
string | null
cik
string | null
is_primary_listing
boolean
default:false