Skip to main content
POST
/
api
/
tradingview
/
quotes
/
documents
/tradingview/quotes/documents
curl --request POST \
  --url https://api.anysite.io/api/tradingview/quotes/documents \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbol": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@trading_view_document",
    "title": "<string>",
    "category": "<string>",
    "category_title": "<string>",
    "event": "<string>",
    "fiscal_period": "<string>",
    "fiscal_year": 123,
    "provider": "<string>",
    "reported_at": 123,
    "status": "<string>",
    "views": []
  }
]

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:KO"

count
integer
required

Maximum number of documents 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
@type
string
default:@trading_view_document
title
string | null
category
string | null
category_title
string | null
event
string | null
fiscal_period
string | null
fiscal_year
integer | null
provider
string | null
reported_at
integer | null
status
string | null
views
TradingViewDocumentView · object[]