Skip to main content
POST
/
api
/
tradingview
/
quotes
/tradingview/quotes
curl --request POST \
  --url https://api.anysite.io/api/tradingview/quotes \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbol": "<string>",
  "timeout": 300
}
'
[
  {
    "symbol": "<string>",
    "@type": "@trading_view_quote",
    "name": "<string>",
    "description": "<string>",
    "image": "<string>",
    "type": "<string>",
    "typespecs": [],
    "close": 123,
    "change": 123,
    "change_abs": 123,
    "open": 123,
    "high": 123,
    "low": 123,
    "prev_close": 123,
    "volume": 123,
    "average_volume": 123,
    "market_cap": 123,
    "price_earnings_ttm": 123,
    "earnings_per_share_ttm": 123,
    "dividend_yield": 123,
    "beta": 123,
    "fifty_two_week_high": 123,
    "fifty_two_week_low": 123,
    "sector": "<string>",
    "industry": "<string>",
    "country": "<string>",
    "exchange": "<string>",
    "currency": "<string>",
    "analyst_rating": "<string>",
    "technical_rating": 123
  }
]

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:BRK.A"

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_quote
name
string | null
description
string | null
image
string | null
type
string | null
typespecs
string[]
close
number | null
change
number | null
change_abs
number | null
open
number | null
high
number | null
low
number | null
prev_close
number | null
volume
number | null
average_volume
number | null
market_cap
number | null
price_earnings_ttm
number | null
earnings_per_share_ttm
number | null
dividend_yield
number | null
beta
number | null
fifty_two_week_high
number | null
fifty_two_week_low
number | null
sector
string | null
industry
string | null
country
string | null
exchange
string | null
currency
string | null
analyst_rating
string | null
technical_rating
number | null