Most-boosted (trending) tokens
API · /dexscreener-api
DexScreener Token Discovery API
Live discovery of newly launched and newly promoted tokens across decentralized exchanges, powered by DexScreener's public token-profiles and token-boosts feeds, no key, nothing stored. This is the new-token discovery cut: not the price of a known trading pair, but which freshly listed tokens are appearing and which ones are spending to get attention right now — the raw deal-flow that degen traders, launch trackers and trading bots watch. The top endpoint returns the tokens with the most cumulative boost (DexScreener's paid promotion), ranked by total boost — effectively what is trending. The latest endpoint returns the most recently boosted tokens. The profiles endpoint returns the newest token profiles: freshly created token pages with their description, icon and social links. Every item carries the chain, the token contract address, the DexScreener link and the project's website and social links, and any endpoint can be filtered to a single chain (Solana, Ethereum, Base and more). Note: many listed tokens are unvetted — this is raw discovery, not an endorsement. This is the token-discovery / new-listings cut — distinct from the DEX trading-pair price data, the market-overview and the on-chain APIs in the catalogue.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 111 ms
- Server probes · 24h
- Subscribers
- 3,671
- active
- Total calls
- 80
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 26,000 calls / month
- 3 requests / second
- Hard cap (429 above quota, no overage)
- 26k calls/month
- 3 req/sec
- All endpoints
- No credit card
Degen
€6.95 /month
- 290,000 calls / month
- 12 requests / second
- Hard cap (429 above quota, no overage)
- 290k calls/month
- 12 req/sec
- Email support
Pro
€20.80 /month
- 1,150,000 calls / month
- 30 requests / second
- Hard cap (429 above quota, no overage)
- 1.15M calls/month
- 30 req/sec
- Priority support
Scale
€49.90 /month
- 3,800,000 calls / month
- 65 requests / second
- Hard cap (429 above quota, no overage)
- 3.8M calls/month
- 65 req/sec
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
DexPaprika On-Chain DEX API
Live on-chain decentralized-exchange market data across 35+ blockchains, with no key. List every supported network with its 24h DEX volume, transaction count and pool count; read the DEXes active on any chain; pull the top liquidity pools ranked by volume; get full token detail with multi-window price stats; search across every chain for tokens, pools and DEXes; and read global coverage totals. The on-chain / DEX / liquidity-pool layer for DeFi dashboards, token analytics, trading and research — distinct from centralized-exchange ticker readers. Live from DexPaprika (by the CoinPaprika team); short cache only.
api.oanor.com/dexpaprika-api
Algorand ASA Token Registry API
Algorand Standard Assets (ASAs) — Algorand's native token standard — live from the public Algonode indexer, no key, nothing cached. Every fungible and non-fungible token on Algorand, including Circle's USDC and Tether's USDt, is an ASA. The Algorand on-chain reader looks up a single asset, but there is no ASA registry in the marketplace; this opens it. Browse the ASA space paginated, each asset with its id, name, unit, total supply and decimals. Look up a single ASA in full — its name, unit, total supply (raw and decimal-adjusted), project URL and the on-chain role addresses that govern it: the manager (can reconfigure or destroy), the reserve, the freeze address and the clawback address. And search ASAs by name to find a token (with a reminder to verify the creator, since anyone can mint an ASA with any name). The token layer for Algorand wallets, DEXs, token explorers and analytics. Live from mainnet-idx.algonode.cloud.
api.oanor.com/algorandasa-api
Pump.fun API
The Pump.fun memecoin launchpad firehose — the dominant Solana token-launch platform — live, no key. On Pump.fun anyone can mint a token in seconds; it trades on a bonding curve and "graduates" to a real DEX once it reaches the graduation market cap. Thousands of new tokens launch every day and the platform is one of the highest-volume venues in all of crypto, so the stream of what is being created, what is climbing and what is graduating is a live pulse of crypto's most speculative, fastest-moving corner. The newest endpoint is the launch firehose — the tokens minted most recently, with their symbol, name, creator, age, market cap, socials and reply count. The top endpoint ranks Pump.fun tokens by market cap — the winners, the memecoins that actually took off and in many cases graduated to a DEX. The live endpoint is the crossover cut: the tokens whose creators are livestreaming right now, ranked by viewer count. The coin endpoint returns any token's full profile by mint address — market cap, graduation status, reply count, socials, creator and age. This is the launchpad / bonding-curve cut, the pre- and post-graduation life of a memecoin at its source — distinct from the DEX-pair screeners (which track established pairs already trading on a DEX, not the launchpad), the CEX price and market-cap feeds, and the DeFi-TVL and on-chain feeds. Market caps are in US dollars; everything is live. Built for crypto trading bots, memecoin scanners, risk and analytics dashboards.
api.oanor.com/pumpfun-api
WEMIX API
Live EVM on-chain data for WEMIX (chain id 1111) — the gaming-focused public Layer-1 built by Wemade, whose native token is WEMIX — served directly from public EVM JSON-RPC nodes with multi-node failover. The status endpoint returns the chain and network id, the latest block height and the node client version. The block endpoint returns a block by number (or the latest) with its hash, parent hash, timestamp, transaction count, gas used and gas limit, miner and size. The gas endpoint returns the current gas price in both wei and gwei. The balance endpoint returns the WEMIX balance and outgoing transaction count for any address, converted from base wei (18 decimals) into whole WEMIX with exact big-integer scaling. Every figure is read live from the chain over JSON-RPC — nothing bundled or modelled — behind a short server-side cache with keep-warm so the feed stays fast and fresh. Ideal for explorers, wallet and dashboard tooling, gas trackers, address monitors and game-economy analytics across the WEMIX ecosystem. Live keyless upstream. 5 endpoints.
api.oanor.com/wemix-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for DexScreener Token Discovery API?
What's the rate limit for DexScreener Token Discovery API?
How much does DexScreener Token Discovery API cost?
Can I cancel my subscription anytime?
Is DexScreener Token Discovery API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/dexscreener-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/dexscreener-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/dexscreener-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/dexscreener-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.