# Dexscreener Scraper (`quarterly_jingo/dexscreener-scraper`) Actor

- **URL**: https://apify.com/quarterly\_jingo/dexscreener-scraper.md
- **Developed by:** [Petey Boy](https://apify.com/quarterly_jingo) (community)
- **Categories:** Lead generation, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 33.3% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-usage

## 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

## DexScreener Crypto Token & Pair Scraper

Extract live cryptocurrency token and trading-pair data from **DexScreener** across every major blockchain. Search by token name, symbol or contract address, or run with empty input to pull a broad dataset of the most active tokens. Built on the official public DexScreener API — fast, reliable, no login required.

### What you get

| Field | Description |
|-------|-------------|
| `tokenName` | Base token name (e.g. "Solana") |
| `tokenSymbol` | Base token symbol (e.g. "SOL") |
| `tokenAddress` | Base token contract address |
| `quoteSymbol` | Quote token symbol (e.g. "USDC") |
| `chain` | Blockchain (solana, ethereum, bsc, base, arbitrum, polygon, avalanche, optimism, fantom, …) |
| `dexId` | DEX / exchange (raydium, uniswap, pancakeswap, aerodrome, …) |
| `pairAddress` | Trading pair contract address |
| `priceUsd` | Current price in USD |
| `priceNative` | Price in the quote token |
| `liquidityUsd` | Pool liquidity in USD |
| `volume24h` / `volume6h` / `volume1h` | Trading volume in USD |
| `priceChange5m` / `priceChange1h` / `priceChange6h` / `priceChange24h` | Price change percent |
| `fdv` / `marketCap` | Fully diluted valuation and market cap |
| `txnsBuys24h` / `txnsSells24h` | 24h buy and sell transaction counts |
| `pairCreatedAt` | Pair creation timestamp (ISO) |
| `url` | DexScreener pair URL |
| `scrapedAt` | ISO timestamp of the scrape |

### Use cases

- **Crypto market research** — snapshot price, liquidity and volume across chains
- **Token monitoring** — track a specific token's pairs and price movement
- **DEX analytics** — compare liquidity and volume by DEX and chain
- **Trading signals** — feed price-change and transaction data into strategies
- **Lead generation** — surface newly launched and trending tokens

### Example input

Run with empty input to scrape a broad default set across top tokens:

```json
{}
```

Or target a specific token:

```json
{
    "searchQuery": "PEPE",
    "chainId": "ethereum",
    "maxItems": 50
}
```

Other modes:

```json
{ "mode": "top_boosts", "maxItems": 30 }
```

```json
{ "mode": "token_profiles", "maxItems": 30 }
```

Look up specific contracts:

```json
{
    "chainId": "solana",
    "tokenAddresses": ["So11111111111111111111111111111111111111112"]
}
```

### Example output

```json
{
    "chain": "base",
    "dexId": "aerodrome",
    "pairAddress": "0x1131DB5977242a03eBeaD1aCD18F80A9A29e5922",
    "tokenName": "Solana",
    "tokenSymbol": "SOL",
    "tokenAddress": "0x311935Cd80B76769bF2ecC9D8Ab7635b2139cf82",
    "quoteSymbol": "USDC",
    "priceUsd": 85.14,
    "liquidityUsd": 391588.92,
    "volume24h": 5102088.31,
    "priceChange24h": 0.32,
    "marketCap": 8725548,
    "txnsBuys24h": 3826,
    "txnsSells24h": 4008,
    "url": "https://dexscreener.com/base/0x1131db5977242a03ebead1acd18f80a9a29e5922",
    "scrapedAt": "2026-05-18T00:00:00.000Z"
}
```

### Supported chains

Solana, Ethereum, BSC, Base, Arbitrum, Polygon, Avalanche, Optimism, Fantom, and every other chain indexed by DexScreener.

### Pricing

Pay per result: **$0.05** per run start + **$0.005** per record. No subscription.

# Actor input Schema

## `searchQuery` (type: `string`):

Search by token name, symbol, or contract address. Leave empty to scrape a broad default set across top tokens.

## `chainId` (type: `string`):

Filter results to a single blockchain.

## `tokenAddresses` (type: `array`):

Specific token contract addresses to look up (max 30). Requires a Chain to be selected.

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

Data extraction mode. Search returns trading pairs; profiles and boosts return promoted tokens.

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

Maximum number of records to return.

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

Optional proxy settings to avoid rate limiting.

## Actor input object example

```json
{
  "chainId": "",
  "mode": "search",
  "maxItems": 10
}
```

# 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("quarterly_jingo/dexscreener-scraper").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("quarterly_jingo/dexscreener-scraper").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 quarterly_jingo/dexscreener-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

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