DappLooker Docs
  • 👋Welcome
  • Data APIs for AI
    • Overview
    • Changelog
    • API Authentication
    • API Endpoints
      • Token Market Data + On-Chain Intelligence + Mindshare
      • List of All Tokens
      • Multi-Interval Technical Analysis
      • Trending Tokens (Scanner)
      • AI-Powered Query via NLQ
      • Agent Details
    • Best Practices
    • Conclusion
  • DappLooker Analytics
    • 🗃️Products
      • 📶Analytics
        • 🔎Browse and Search data
        • 📈Creating Charts
          • No-Code Charts
          • SQL Charts
        • 🔢Custom Values
        • 📊Dashboards
          • Create Dashboard
          • Add Charts to Dashboard
          • Discover Page
          • Link dashboard to another dashboard
          • Adding Filters to Dashboard
            • Time Filter
        • ♻️Convert No-Code to SQL
        • 🔗Making Charts and Dashboards Public
      • 🔍Subgraph Analyzer
      • ✨AI Studio
        • AI Studio API Support
      • 🤖DataBOT
        • 🎮Discord Bot
        • ▶️Telegram Bot
        • 🌐Connect with Leading Networks and dApps
      • 🔑DappLooker SDK
        • 🔎Tracking API Usage
    • 🌐Supported Networks
      • Blockchain Data
      • Smart Contracts
      • Subgraphs
      • SubQuery
      • Offchain Data Sources
    • 📲Registering Data
      • My Dashboard Overview
      • Smart Contracts
      • Subgraph
      • Subquery
      • Off-Chain Integration
    • 🔖Featured Projects
    • 🎯Features
      • XRay Feature
      • Filtering
      • Summarize
      • Downloading
        • Download Chart Data
      • Editor Panel
        • Preview Chart
        • Joining Data
        • Types Of Join Data
        • Sorting
        • Row Limit
        • Convert to models
        • Duplicate a Chart
        • New Collection
      • Creating Custom Column and Custom Expressions
      • 📷Screenshot
      • 🗃️Collections
        • Browse Collection
        • Personal Collection
        • Team Collection
    • ⛓️Smart Contract Live Query
    • 🔔Push Notifications
      • 👀Where to view notifications?
      • 📰Push x MetaMask Snaps
    • 👨‍⚖️Case Studies
      • 1️⃣Community Updates
      • 2️⃣DeFi Reports
      • 3️⃣On-Chain & Off-Chain Analysis
      • 4️⃣User Retention Analysis
      • 5️⃣DappLooker Telegram Bot
      • 6️⃣Subgraph Powered No-Code Dashboards
      • 7️⃣API Use Case: Beamswap
      • 8️⃣Embedding Use Case: GRTDataHub
    • 💰Pricing
      • Pricing Breakdown
      • Discounts And Payments
    • 💻Deploy a subgraph on the DappLooker custom node
    • 🥷DappLooker No-code Ninjas Program!
    • 🤝Sponsor With Us
    • 🔗Relevant Resources
    • ☎️Contact Us
  • API Guides
    • Get API Key
    • How to Get an API of a Chart
    • Render Chart or Dashboard as an Image with API
    • Mintbase
      • Individual Store Level APIs
      • Mintbase Protocol Level APIs
    • Nordek Developer APIs
  • Explorers
    • CeloSpy
    • VaraSpy
Powered by GitBook
On this page
  • Endpoint
  • Query Parameters
  • Sample Request
  • Sample Response
  • Response Fields Explanation

Was this helpful?

  1. Data APIs for AI
  2. API Endpoints

Trending Tokens (Scanner)

Retrieve a list of currently trending crypto tokens based on real-time activity and market signals. Useful for identifying high-momentum tokens gaining traction across specific chains.

PreviousMulti-Interval Technical AnalysisNextAI-Powered Query via NLQ

Last updated 1 day ago

Was this helpful?

Endpoint

GET https://api.dapplooker.com/v1/trending

💡 Pro Tips

  • This endpoint returns the top 10 trending tokens on a selected chain—perfect for spotting what’s gaining traction in real time.

  • It provides live market data such as volume, liquidity, market cap, and short-term price changes (1h & 24h)—ideal for quick sentiment reads.

  • Use it to identify high-momentum tokens early before they gain broader visibility.

  • Combine with other endpoints like and to build a deeper picture of each trending token’s fundamentals.

Query Parameters

Parameter name

Type

Mandatory

Description

api_key

string

Yes

Your unique Loky API key used for authentication

chain

string

Yes

The network chain to query. Supported chains: base, solana

Sample Request

# For Base Chain
curl --location 'https://api.dapplooker.com/v1/trending?api_key=<API_KEY>&chain=base'

# For Solana Chain
curl --location 'https://api.dapplooker.com/v1/trending?api_key=<API_KEY>&chain=solana'

Sample Response

{
  "success": true,
  "data": [
    {
      "token_id": "pog-digital",
      "token_name": "Pog Coin",
      "token_symbol": "POGS",
      "token_address": "0x728f0a7fec1859cb0d71a432271d4e80310d235f",
      "volume": "754.89",
      "liquidity": "23253.20000",
      "mcap": "1712403.00",
      "price_change_percentage_1h": "0.58",
      "price_change_percentage_24h": "-3.15",
      "network": "base"
    },
    {
      "token_id": "whim-bet-by-virtuals",
      "token_name": "whim.bet by Virtuals",
      "token_symbol": "WHIM",
      "token_address": "0x39a1cce09d7354ac2db86c6b02924360a10e4793",
      "volume": "87029.00",
      "liquidity": "370716.60000",
      "mcap": "1273079.00",
      "price_change_percentage_1h": "2.05",
      "price_change_percentage_24h": "21.71",
      "network": "base"
    }
    ... // Upto 10 items
  ]
}

Response Fields Explanation

  • token_id (string): A unique assigned identifier for the token.

  • token_name (string): The full, human-readable name of the token.

  • token_symbol (string): The token’s ticker symbol, typically used in trading.

  • token_address (string): The on-chain address (contract address) of the token.

  • volume (string): The total trading volume for the token in the last 24 hours, denominated in USD.

  • liquidity (string): The current liquidity available for the token, typically based on decentralized exchange pools.

  • mcap (string): The market capitalization of the token, calculated as price × circulating supply.

  • price_change_percentage_1h (string): The token’s price percentage change over the past 1 hour.

  • price_change_percentage_24h (string): The token’s price percentage change over the past 24 hours.

  • network (string): The blockchain network on which the token is deployed (e.g., base, solana).

Token Details
Technical Indicators