# DEX Trending & New Token Scanner (`tuhin/dex-token-scanner`) Actor

Scan trending and newly-boosted DEX tokens across chains with liquidity, 24h volume, price momentum and buy/sell pressure — from DexScreener public data.

- **URL**: https://apify.com/tuhin/dex-token-scanner.md
- **Developed by:** [Tuhin](https://apify.com/tuhin) (community)
- **Categories:**
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.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.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#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

## DEX Trending & New Token Scanner

**Find trending and freshly-launched DEX tokens before they run — across Solana, Ethereum, Base, BSC and more.**

Pulls the currently-trending/boosted tokens from DexScreener and enriches each with live *price, 24h volume, liquidity, price momentum (5m/1h/6h/24h), buy/sell pressure, and token age*, then flags actionable signals.

> **Public data only** — DexScreener's public API. No wallet, no login, no private data.

### Input

| Field | Default | Description |
|-------|---------|-------------|
| `chains` | `["solana"]` | Chains to include (e.g. `solana`, `ethereum`, `base`, `bsc`). Empty = all. |
| `minLiquidityUsd` | `10000` | Filter out low-liquidity/dust pairs. |
| `minVolumeH24` | `20000` | Minimum 24h volume. |
| `maxAgeHours` | `0` | Only tokens newer than this (0 = no limit). |
| `sortBy` | `volumeH24` | `volumeH24` / `priceChangeH24` / `liquidity` / `ageAsc`. |
| `topN` | `50` | Max tokens returned. |

#### Example

```json
{ "chains": ["solana","base"], "minLiquidityUsd": 15000, "minVolumeH24": 50000, "maxAgeHours": 24, "sortBy": "priceChangeH24" }
```

### Output (per token)

```json
{
  "symbol": "APEFONE", "chain": "solana", "dex": "raydium",
  "tokenAddress": "…", "pairAddress": "…",
  "priceUsd": 0.0002778, "priceChangeM5": 1.2, "priceChangeH1": 12.4, "priceChangeH24": 238,
  "volumeH24": 873145, "liquidityUsd": 45688, "fdv": 277800, "marketCap": 277800,
  "buysH24": 4200, "sellsH24": 1400, "buySellRatioH24": 3.0,
  "ageHours": 2, "boostAmount": 500,
  "signals": ["new","mooning","high-churn","buy-pressure","boosted"],
  "url": "https://dexscreener.com/solana/…",
  "collectedAt": "2026-08-30T18:00:00Z"
}
```

**Signals:** `new` (≤24h), `mooning` (+50% 24h), `dumping` (−40%), `high-churn` (vol ≥ 3× liquidity), `buy-pressure` / `sell-pressure` (buy:sell skew), `boosted` (paid DexScreener boost).

### Scheduling

Schedule it every few minutes to catch new launches and momentum shifts as they happen.

### Notes / limitations

- Covers tokens currently *trending/boosted* on DexScreener (the active-attention set), not every token on-chain.
- Signals are momentum heuristics, **not financial advice**. Micro-cap DEX tokens are extremely high-risk.

# Actor input Schema

## `chains` (type: `array`):

Filter to these chains, e.g. "solana", "ethereum", "base", "bsc". Empty = all.

## `minLiquidityUsd` (type: `integer`):

Skip pairs with less liquidity than this (filters rugs/dust).

## `minVolumeH24` (type: `integer`):

Skip pairs with less 24h volume than this.

## `maxAgeHours` (type: `integer`):

Only keep tokens whose pair is newer than this. 0 = no age limit.

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

Ranking metric.

## `topN` (type: `integer`):

Maximum tokens in the output.

## `proxyConfiguration` (type: `object`):

Optional. DexScreener works fine without a proxy.

## Actor input object example

```json
{
  "chains": [
    "solana",
    "base"
  ],
  "minLiquidityUsd": 10000,
  "minVolumeH24": 20000,
  "maxAgeHours": 0,
  "sortBy": "volumeH24",
  "topN": 50,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `tokens` (type: `string`):

Trending/new DEX tokens with liquidity, volume, momentum and buy/sell signals.

# 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 = {
    "chains": [
        "solana"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("tuhin/dex-token-scanner").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 = { "chains": ["solana"] }

# Run the Actor and wait for it to finish
run = client.actor("tuhin/dex-token-scanner").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "chains": [
    "solana"
  ]
}' |
apify call tuhin/dex-token-scanner --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,tuhin/dex-token-scanner"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/DuljZKxbj2uExBGSw/builds/8XB9AtkeBR3ShZ2ET/openapi.json
