# Ethereum Tokens Leaderboard (`websift/ethereum-tokens-leaderboard`) Actor

Retrieve top Ethereum tokens with real-time prices, balances, and 24-hour price changes. Sort by Price, Change %, 24hr Volume, Circulating Market Cap or Holders, and customize the number of results. Ideal for investors, developers, and analysts.

- **URL**: https://apify.com/websift/ethereum-tokens-leaderboard.md
- **Developed by:** [Jacob](https://apify.com/websift) (community)
- **Categories:** Developer tools, E-commerce, Automation
- **Stats:** 6 total users, 0 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## Etherscan Token Leaderboard Scraper

Scrape the Etherscan token leaderboard to extract comprehensive data about ERC-20 tokens on the Ethereum blockchain. Get real-time information about token prices, market caps, trading volumes, holder counts, and more.

### Important Notes

- Minimum of 10 results per run
- Maximum of ~2500 (etherscans limit), an input of >2500 will return the maximum results

### Features

- **Comprehensive Token Data**: Extracts rank, token name, symbol, price, 24h change percentage, trading volume, market caps, and holder counts
- **Custom Sorting**: Sort tokens by price, market cap, volume, 24h change, or number of holders
- **Ascending/Descending Order**: Control the sort direction for your specific needs
- **Batch Processing**: Efficiently fetches multiple pages concurrently for faster results

### Example Input

```json
{
  "maxItems": 100,
  "sortBy": "market_cap",
  "orderBy": "desc"
}
```

### Example Output

```json
{
  "Rank": "1",
  "Token": "Tether USD",
  "Symbol": "USDT",
  "Price": "$1.00",
  "Change (%)": "-0.01",
  "Volume (24H)": "$45,234,567,890",
  "Circulating Market Cap": "$95,123,456,789",
  "Onchain Market Cap": "$95,123,456,789",
  "Holders": "5,234,567"
}
```

#### Field Descriptions

- **Rank**: Token's position on the leaderboard
- **Token**: Full name of the token
- **Symbol**: Token ticker symbol
- **Price**: Current price in USD
- **Change (%)**: 24-hour price change percentage
- **Volume (24H)**: Trading volume over the last 24 hours
- **Circulating Market Cap**: Market capitalization based on circulating supply
- **Onchain Market Cap**: Market capitalization based on total on-chain supply
- **Holders**: Number of unique wallet addresses holding the token
- **Holders Change (%)**: 24-hour holder change percentage

### Limitations

- Data is scraped from the public Etherscan website and reflects the information available at the time of scraping

### Error Handling

The actor includes robust error handling:

- **Invalid Inputs**: If invalid parameters are provided (e.g., negative `maxItems`, invalid `sortBy` values), the actor will exit with an error message
- **Failed Requests**: If individual page requests fail, the actor logs the error and continues processing other pages
- **Parsing Errors**: If the HTML structure is unexpected, affected tokens are skipped while processing continues

### Support

For issues, feature requests, or questions about this actor, please create an issue in the repository.

# Actor input Schema

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

Maximum results returned

## `sortBy` (type: `string`):

Sort transactions by Value, Price, Quantity, Asset.

## `orderBy` (type: `string`):

Set sorting order: ascending or descending.

## Actor input object example

```json
{
  "maxItems": 100
}
```

# 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("websift/ethereum-tokens-leaderboard").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("websift/ethereum-tokens-leaderboard").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 websift/ethereum-tokens-leaderboard --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=websift/ethereum-tokens-leaderboard",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

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