Dexscreener Scraper
Spider read dexscreener.com in 1.4 s without a browser and returned 872 lines of clean markdown, including the section "Get trending metas (rate-limit 60 requests per minute)".
### Get one or multiple pairs by token address (rate-limit 300 requests per minute)gethttps://api.dexscreener.com/tokens/v1/{chainId}/{tokenAddresses}tokenAddressesstringRequiredOne or multiple, comma-separated token addresses (up to 30 addresses)Example: `So11111111111111111111111111111111111111112,EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v`get/tokens/v1/{chainId}/{tokenAddresses}### Get trending metas (rate-limit 60 requests per minute)gethttps://api.dexscreener.com/metas/trending/v1descriptionstringOptionalmarketCapnumber · doubleOptionalliquiditynumber · doubleOptionalvolumenumber · doubleOptionaltokenCountintegerOptionalmarketCapChangeobject · TimeframeStatsOptionalmarketCapDeltaobject · TimeframeStatsOptional### Get meta information for a given slug (rate-limit 60 requests per minute)gethttps://api.dexscreener.com/metas/meta/v1/{slug}slugstringRequiredExample: `ai`* getGet the latest token profiles (rate-limit 60 requests per minute)* getGet recently updated token profiles (rate-limit 60 requests per minute)* getGet the latest token community takeovers (rate-limit 60 requests per minute)* getGet the latest ads (rate-limit 60 requests per minute)* getGet the latest boosted tokens (rate-limit 60 requests per minute)* getGet the tokens with most active boosts (rate-limit 60 requests per minute)* getCheck paid orders for a token (rate-limit 60 requests per minute)* getGet one or multiple pairs by chain and pair address (rate-limit 300 requests per minute)* getSearch for pairs matching query (rate-limit 300 requests per minute)* getGet the pools of a given token address (rate-limit 300 requests per minute)* getGet one or multiple pairs by token address (rate-limit 300 requests per minute)* getGet trending metas (rate-limit 60 requests per minute)* getGet meta information for a given slug (rate-limit 60 requests per minute) The same call, in code.
The capture above came back as markdown. These examples add a key, so you get browser rendering, proxies, and concurrency on dexscreener.com.
import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://dexscreener.com");
// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();
console.log(data);
await spider.close(); import { Spider } from "@spider-cloud/spider-client";
const spider = new Spider({ apiKey: process.env.SPIDER_API_KEY! });
const result = await spider.scrapeUrl("https://www.dexscreener.com", {
return_format: "markdown",
});
console.log(result); Ready for volume? Get an API key →
Fields you can pull.
Spider names these from the page. The capture above came back as markdown; the same
call with return_format: "json" returns them as keys.
What dexscreener.com costs to scrape.
The capture above cost $0.001503 to fetch. Pricing is $1 per GB of pre-transformation bandwidth plus $0.001 per CPU minute, so a page like this one lands at a fraction of a cent. Failed requests are billed at $0.
- Free balance on signup
- No card required to test
- Balance never expires
Run it keyless, no account
More Directories scrapers.
Spotify Main Page Scraper
Extract structured data from Spotify Main Page with automated CSS selectors.
Roblox Landing Page Scraper
Roblox landing page metadata and cookie banner information.
Mozilla Homepage Data Scraper
A scraper for extracting all useful data from the Mozilla homepage, including site metadata, navigation, and content.
Start scraping dexscreener.com.
You already have the call. A key raises the rate limit and turns on browser rendering, proxies, and concurrency. Balance never expires, and top-ups go through secure checkout.