TradingView Stock Fundamentals Card
Pricing
from $5.00 / 1,000 fundamentals cards
TradingView Stock Fundamentals Card
Fetch company profile, valuation, analyst targets, dividends and financials per symbol. Batch fundamentals cards for research, CRM and AI agents.
Pricing
from $5.00 / 1,000 fundamentals cards
Rating
0.0
(0)
Developer
barry Alan
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
Export a fundamentals card for every ticker in one Actor run: company profile, valuation, analyst targets, dividends, and (optionally) full financial history.
This is a batch Dataset export on top of TradingView Data API (GET /api/market-data/{symbol}/…). It is not an official TradingView product and not a live WebSocket/SSE feed.
What you get
Pass a list of EXCHANGE:TICKER symbols. The Actor loops the single-symbol upstream endpoints and writes one Dataset row per symbol — so you can enrich a watchlist, CRM, or agent in one job without calling the HTTP API yourself.
| Mode | What it fetches | Best for |
|---|---|---|
light (default) | company, indicators, analyst-recommendations, dividend, forecast | CRM, screeners, AI research packs |
full | Entire /api/market-data/{symbol} bundle (including financial history) | Deep dives; larger payloads |
sections | Only the blocks listed in sections | Custom / cheaper runs |
Each row includes summary columns plus the raw data object:
| Field | Meaning |
|---|---|
symbol | e.g. NASDAQ:AAPL |
companyName, sector | From company profile |
marketCap, peRatio | From indicators |
priceTargetAverage | Analyst / forecast target |
data | Nested blocks (company, indicators, …) |
scrapedAt | ISO timestamp for this row |
How to use
- Open the Actor and set
symbols(one or many). - Keep
mode=lightunless you need history (full) or a custom subset (sections). - Set
maxSymbolsif you want a safety cap (default 20, max 50). - Run. Download the Dataset as JSON, CSV, or Excel. Schedule it from Apify, or call it from Make / n8n / your own API.
Example
{"symbols": ["NASDAQ:AAPL", "NASDAQ:MSFT"],"mode": "light","maxSymbols": 10}
That run hits upstream twice (once per symbol) and produces two Dataset rows.
Input
| Field | Required | Description |
|---|---|---|
symbols | yes | EXCHANGE:TICKER list |
mode | no | light | full | sections |
sections | no | When mode=sections: e.g. company, indicators, forecast |
maxSymbols | no | Cap (default 20, max 50) |
You do not need to paste an API key. Upstream credentials are configured by the Actor owner.
Pricing (pay per event)
| Event | When |
|---|---|
fundamental-card | Once per symbol processed |
Ten tickers ⇒ ten fundamental-card events (plus the platform Actor-start event). A run that hits your charge budget stops early and still keeps the rows already written.
Limits and notes
- Snapshot / delayed fundamentals — not tick-level quotes.
fullresponses can be hundreds of KB per symbol.- Failed symbols are still written as a row with
errorso the Dataset stays complete. - Not investment advice. Data comes from TradingView Data API.