# TradingView Search ## Overview | Property | Value | |----------|-------| | **Status** | private | | **Method** | `GET` | | **Endpoint** | `/v2/tradingview/search` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 1 credit per call | | **Documentation** | https://www.piloterr.com/library/tradingview-search | ## Description Access real-time financial data from TradingView to enhance market analysis, trading systems, and portfolio management. ## Authentication - **Key Name:** `x-api-key` - **Location:** HTTP Header - **Get an API key:** https://app.piloterr.com/register ## Example Request ```bash curl --location --request GET 'https://api.piloterr.com/v2/tradingview/search' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Example ```json { "date": "2023-09-19T15:30:00Z", "news": [ { "link": "https://cryptonews.com/ethereum-high", "title": "Ethereum Hits New High", "source": "CryptoNews" }, { "link": "https://coinprediction.com/eth-2024", "title": "ETH Price Prediction for 2024", "source": "CoinPrediction" } ], "price": "3054.82", "change": "-4.56", "symbol": "ETH", "volume": "1234567", "indicators": { "rsi": "70.5", "macd": "1.25", "moving_average": [ { "value": "3025.00", "period": "50" }, { "value": "2900.00", "period": "200" } ], "bollinger_bands": { "lower": "3000.00", "upper": "3100.00" } }, "percent_change": "-0.15" } ``` ## Documentation ## Overview Access real-time financial data from TradingView to enhance market analysis, trading systems, and portfolio management. ## Quickstart ``` GET https://api.piloterr.com/v2/tradingview/search?query=example ``` ## Parameters | Parameter | Type | Required | Description | |---|---|---|---| | `query` | string | yes | Search query or target identifier | ## Main use cases - Integrate TradingView Search data into enrichment, analytics, and monitoring pipelines - Automate large-scale extraction from Tradingview without maintaining scrapers - Power internal dashboards and workflow automations with live Tradingview data