Skip to main content
POST
/
api
/
tradingview
/
quotes
/
news
/tradingview/quotes/news
curl --request POST \
  --url https://api.anysite.io/api/tradingview/quotes/news \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbol": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "title": "<string>",
    "@type": "@trading_view_news_article",
    "published_at": 123,
    "urgency": 123,
    "provider": "<string>",
    "related_symbols": [],
    "is_exclusive": false,
    "url": "<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:DIS"

count
integer
required

Maximum number of articles 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
title
string
required
@type
string
default:@trading_view_news_article
published_at
integer | null
urgency
integer | null
provider
string | null
is_exclusive
boolean
default:false
url
string | null