TradingView Stock Fundamentals Card avatar

TradingView Stock Fundamentals Card

Pricing

from $5.00 / 1,000 fundamentals cards

Go to Apify Store
TradingView Stock Fundamentals Card

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

barry Alan

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

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.

ModeWhat it fetchesBest for
light (default)company, indicators, analyst-recommendations, dividend, forecastCRM, screeners, AI research packs
fullEntire /api/market-data/{symbol} bundle (including financial history)Deep dives; larger payloads
sectionsOnly the blocks listed in sectionsCustom / cheaper runs

Each row includes summary columns plus the raw data object:

FieldMeaning
symbole.g. NASDAQ:AAPL
companyName, sectorFrom company profile
marketCap, peRatioFrom indicators
priceTargetAverageAnalyst / forecast target
dataNested blocks (company, indicators, …)
scrapedAtISO timestamp for this row

How to use

  1. Open the Actor and set symbols (one or many).
  2. Keep mode = light unless you need history (full) or a custom subset (sections).
  3. Set maxSymbols if you want a safety cap (default 20, max 50).
  4. 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

FieldRequiredDescription
symbolsyesEXCHANGE:TICKER list
modenolight | full | sections
sectionsnoWhen mode=sections: e.g. company, indicators, forecast
maxSymbolsnoCap (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)

EventWhen
fundamental-cardOnce 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.
  • full responses can be hundreds of KB per symbol.
  • Failed symbols are still written as a row with error so the Dataset stays complete.
  • Not investment advice. Data comes from TradingView Data API.