Solana Tokens Leaderboard avatar

Solana Tokens Leaderboard

Try for free

Pay $0.50 for 1,000 results

Go to Store
Solana Tokens Leaderboard

Solana Tokens Leaderboard

websift/solana-tokens-leaderboard
Try for free

Pay $0.50 for 1,000 results

Fetch top tokens on the solana network

Solana Token Leaderboard Crawler

Retrieve comprehensive data about top Solana tokens effortlessly.

Features

  • Fetch top Solana tokens
  • Flexible sorting options for tokens
  • Customizable data retrieval limits
  • Supports sorting by:
    • Price
    • Number of Holders
    • Market Capitalization
  • Asynchronous data collection for efficient processing

Input

The actor accepts three optional input parameters to customize your token leaderboard search:

Input Parameters

max_items (integer, required):

  • Maximum number of tokens to retrieve
  • Must be a positive integer
  • Determines the total number of tokens in the final dataset

sort_by (string, optional):

  • Specify the column to sort tokens
  • Allowed values:
    • Price
    • Holder
    • Market Cap

order_by (string, optional):

  • Specify the sorting order
  • Allowed values:
    • Asc (Ascending)
    • Desc (Descending)

Output

For each token, the actor collects the following information:

  • Token Address
  • Current Market Cap
  • Current Price
  • 24-Hour Price Change
  • Number of Holders

Example Usage

Retrieve Top 500 Tokens by Market Cap (Descending)

1{
2  "max_items": 500,
3  "sort_by": "market_cap",
4  "order_by": "desc"
5}

Example output

1[
2    {
3        "address": "So11111111111111111111111111111111111111112",
4        "market_cap": 126315721570.19452,
5        "price": 217.09,
6        "price_24h_change": 8.4408,
7        "holder": 1215073
8    }
9]

Limitations

  • Some tokens might have missing data fields marked as "N/A" if not available on

Error Handling

The actor includes robust error handling:

  • Validates input parameters
  • Raises clear exceptions for invalid inputs
  • Gracefully handles API request failures
  • Provides informative error messages

Support

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

Developer
Maintained by Community

Actor Metrics

  • 1 monthly user

  • 1 star

  • >99% runs succeeded

  • Created in Feb 2025

  • Modified 4 hours ago