Skip to main content
POST
/
api
/
tradingview
/
ideas
/tradingview/ideas
curl --request POST \
  --url https://api.anysite.io/api/tradingview/ideas \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "symbol": "NASDAQ:AAPL"
}
'
[
  {
    "id": "<string>",
    "@type": "@trading_view_idea",
    "title": "<string>",
    "author": "<string>",
    "symbol": "<string>",
    "strategy": "<string>",
    "boost_count": 123,
    "comment_count": 123,
    "image": "<string>",
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Maximum number of ideas to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
symbol
string | null

Ticker in EXCHANGE:SYMBOL form to filter ideas by

Minimum string length: 1
Example:

"NASDAQ:AAPL"

Response

Successful Response

id
string
required
@type
string
default:@trading_view_idea
title
string | null
author
string | null
symbol
string | null
strategy
string | null
boost_count
integer | null
comment_count
integer | null
image
string | null
url
string | null