Skip to main content
POST
/
api
/
tradingview
/
quotes
/
related
/tradingview/quotes/related
curl --request POST \
  --url https://api.anysite.io/api/tradingview/quotes/related \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbol": "<string>",
  "count": 2,
  "timeout": 300,
  "region": "america"
}
'
[
  {
    "symbol": "<string>",
    "@type": "@trading_view_related_symbol",
    "name": "<string>",
    "description": "<string>",
    "image": "<string>",
    "close": 123,
    "change": 123,
    "market_cap": 123,
    "sector": "<string>",
    "industry": "<string>",
    "country": "<string>",
    "exchange": "<string>",
    "type": "<string>",
    "currency": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
symbol
string
required

Ticker in EXCHANGE:SYMBOL form

Minimum string length: 1
Examples:

"NASDAQ:AAPL"

"NYSE:JPM"

count
integer
required

Maximum number of related instruments to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
region
enum<string>
default:america

Market region to search peers in

Available options:
america,
australia,
canada,
germany,
india,
uk

Response

Successful Response

symbol
string
required
@type
string
default:@trading_view_related_symbol
name
string | null
description
string | null
image
string | null
close
number | null
change
number | null
market_cap
number | null
sector
string | null
industry
string | null
country
string | null
exchange
string | null
type
string | null
currency
string | null