# Crypto Token & DEX Intelligence — Price & Liquidity (`nexgendata/crypto-token-dex-intelligence`) Actor

Live multi-chain crypto token and DEX-pair data from Dexscreener — price, liquidity, 24h volume, market cap, plus newest and trending tokens. Filter by chain and minimum liquidity. For traders, bots, and analysts.

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

## Pricing

$50.00 / 1,000 token records

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

## Crypto Token & DEX Intelligence

Live on-chain token and DEX-pair data across every major chain — **price, liquidity, 24h volume, market cap, and newly-listed & trending tokens** — from the Dexscreener public API. No key, no scraping.

### Three modes

- **Search** — find pairs by token symbol, name, or contract address (price, liquidity, volume, FDV).
- **New** — the newest tokens listed across DEXs, enriched with live market data.
- **Trending** — the top boosted/trending tokens right now.

### What you get

`token_symbol, token_name, token_address, chain, dex, price_usd, liquidity_usd, volume_24h, price_change_24h, market_cap, fdv, pair_created_at, pair_url`

Use `min_liquidity` to filter out illiquid/scam pairs, and `chains` to focus on Solana, Ethereum, Base, BSC, etc.

### Who uses it

- **Traders & DeFi** — new-token discovery, liquidity/volume screening, trend spotting
- **Analysts & researchers** — multi-chain market data
- **Bots & dashboards** — a clean price/liquidity feed

### Inputs

`mode`, `query`, `chains`, `min_liquidity`, `max_results`

### 📊 Sample Output

![Sample output](https://api.apify.com/v2/key-value-stores/8gLgXMBveEI1tTz1z/records/crypto-token-dex-intelligence-sample)

Real PEPE pairs across Solana and Base — live price, liquidity, and 24h volume per DEX, filtered to ≥$50K liquidity.

### 🔗 Related Actors

Part of the NexGenData data suite:

- **[Company Financial Fundamentals (SEC XBRL)](https://apify.com/nexgendata/company-financial-fundamentals-sec)** — equities fundamentals
- **[Tech Hiring Signals](https://apify.com/nexgendata/tech-hiring-signals-ats-jobs)** — open jobs across companies

### Sources & legal

Public data from the Dexscreener API. Market data only — not financial advice. Crypto is volatile and high-risk.

# Actor input Schema

## `mode` (type: `string`):

search = find pairs by token/symbol/name; new = newest listed tokens; trending = top boosted/trending tokens.

## `query` (type: `string`):

For search mode: token symbol, name, or address (e.g. PEPE, SOL, USDC).

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

Keep only these chains (e.g. solana, ethereum, base, bsc). Empty = all.

## `min_liquidity` (type: `integer`):

Only return pairs with at least this much USD liquidity (filters out illiquid/scam pairs).

## `max_results` (type: `integer`):

Maximum token/pair records to return.

## Actor input object example

```json
{
  "mode": "search",
  "query": "PEPE",
  "max_results": 30
}
```

# 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 = {
    "mode": "search",
    "query": "PEPE",
    "max_results": 30
};

// Run the Actor and wait for it to finish
const run = await client.actor("nexgendata/crypto-token-dex-intelligence").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 = {
    "mode": "search",
    "query": "PEPE",
    "max_results": 30,
}

# Run the Actor and wait for it to finish
run = client.actor("nexgendata/crypto-token-dex-intelligence").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 '{
  "mode": "search",
  "query": "PEPE",
  "max_results": 30
}' |
apify call nexgendata/crypto-token-dex-intelligence --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

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