# TradingView Crypto Screener - All Data (`ryyos/tv-crypto-screener`) Actor

\[$0.5/1000] Scrape the complete TradingView cryptocurrency screener (prices, market cap, technicals, valuation, derivatives, on-chain and sentiment data) for 2600+ coins in one run

- **URL**: https://apify.com/ryyos/tv-crypto-screener.md
- **Developed by:** [Rio Dwi Saputra](https://apify.com/ryyos) (community)
- **Categories:** Developer tools, Automation, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.40 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## TradingView Crypto Screener - Full Market Data Scraper

Scrape **every coin on the TradingView cryptocurrency screener** (2600+ tickers)
in a single run, with **all 8 data sections TradingView itself offers** -
Overview, Performance, Technicals, Valuation, Derivatives, Addresses,
Transactions and Sentiment. No browser, no proxy, no login required - this
Actor talks directly to the same public screener API TradingView's own website
uses, so runs finish in seconds instead of minutes. Missing values are never
left as `null`: every field always comes back with a safe, predictable
default so you can rely on the shape of the data every time. **\[$0.9/1000]**

### Features

- Covers all 8 screener tabs (Overview, Performance, Technicals, Valuation,
  Derivatives, Addresses, Transactions, Sentiment) in one Actor - pick any
  combination via the `sections` input.
- Ranked by market cap, exactly matching the order shown on
  [tradingview.com/markets/cryptocurrencies/prices-all](https://www.tradingview.com/markets/cryptocurrencies/prices-all/).
- No `null` fields, ever - missing ratings default to `"Neutral"`, missing
  numbers default to `0`, so downstream code never has to guard against
  missing keys.
- Each result includes a ready-to-use `url` pointing straight at the
  symbol's TradingView page - feed it directly into the companion
  **TradingView Symbol Detail Scraper** Actor for a full deep-dive per coin.
- Fast - a single HTTP request per selected section, no headless browser.

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `sections` | array | all 8 sections | Which screener tabs to include (`overview`, `performance`, `technicals`, `valuation`, `derivatives`, `addresses`, `transactions`, `sentiment`) |
| `maxItems` | integer | `100` | Max number of coins to scrape, ranked by market cap. `0` = every coin (2600+) |

See `.actor/input_schema.json` for the full schema.

### Output

One dataset item per coin. Example (`sections: ["overview", "sentiment"]`):

```json
{
  "symbol": "ETH",
  "description": "Ethereum",
  "exchange": "CRYPTO",
  "logo_id": "crypto/XTVCETH",
  "full_symbol": "CRYPTO:ETHUSD",
  "rank": 2,
  "url": "https://www.tradingview.com/symbols/ETHUSD/?exchange=CRYPTO",
  "price": 1864.83,
  "change_24h_percent": -0.898,
  "market_cap_usd": 225051907363.33,
  "volume_24h_usd": 7558739698.17,
  "circulating_supply": 120682264.53,
  "volume_to_market_cap": 0.0336,
  "social_dominance_percent": 10.92,
  "category": ["Smart contract platforms", "Layer 1"],
  "technical_rating": "Sell",
  "alt_rank": 135,
  "galaxy_score": 33.8,
  "sentiment_score": 79,
  "social_volume": 40455,
  "tweets_count": 31764
}
```

Selecting more `sections` merges more fields into the same row (performance,
technicals, valuation, derivatives, addresses, transactions all follow the
same pattern). You can download the dataset in various formats such as JSON,
HTML, CSV, or Excel. A curated table view is also available in the Apify
Console Output tab (`.actor/dataset_schema.json`).

### Environment variables

None. The TradingView screener endpoint used here is the same public
endpoint the tradingview.com website itself calls from the browser - no API
key, token or login is required.

### Tips

- Leave `maxItems` at a small number (e.g. `20`-`100`) while testing an
  input, then raise it (or set `0`) for a full production run.
- Selecting only the sections you actually need keeps runs faster and
  cheaper - each selected section is one extra HTTP request.

### FAQ & support

This Actor only reads TradingView's own public screener endpoint - the same
one your browser uses when you open the screener page - and does not bypass
any login wall or paywall. Data accuracy depends entirely on TradingView;
this Actor does not modify or interpret the numbers. Found a bug or want a
new field added? Use the Issues tab on this Actor's Apify Store page.

### Development

```bash
pytest tests/
apify validate-schema
apify run --purge
```

# Actor input Schema

## `sections` (type: `array`):

Pick which TradingView screener tabs to include for every coin - this mirrors the tabs on the real screener page (Overview, Performance, Technicals, Valuation, Derivatives, Addresses, Transactions, Sentiment). All 8 are selected by default so you get every column TradingView exposes.

## `maxItems` (type: `integer`):

Maximum number of coins to fetch, ranked by market cap (1 = Bitcoin, 2 = Ethereum, ...). Set to 0 to scrape every coin listed on TradingView (2600+).

## Actor input object example

```json
{
  "sections": [
    "overview",
    "performance",
    "technicals",
    "valuation",
    "derivatives",
    "addresses",
    "transactions",
    "sentiment"
  ],
  "maxItems": 100
}
```

# Actor output Schema

## `screenerResults` (type: `string`):

No description

## `runInfo` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("ryyos/tv-crypto-screener").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("ryyos/tv-crypto-screener").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call ryyos/tv-crypto-screener --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=ryyos/tv-crypto-screener",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/plYN6126xm5ewuCXK/builds/KCOofTK2dv4I0aLhF/openapi.json
