codeAPI

This API allows token-level lookups and provides live market pair data.

Example API Usage:

const tokenAddress = 'INSERT_SOLANA_TOKEN_ADDRESS'; fetch(https://api.dexscreener.com/latest/dex/tokens/${tokenAddress}) .then(res => res.json()) .then(data => { console.log(data); // Handle logic: score calculation, risk assessment, etc. }) .catch(err => console.error('API Error:', err)); Authentication / API Key

Dex Screener's public API currently does not require an API key. All requests are free and rate-limited based on IP. No sign-up required.

You can monitor their status page or documentation for future API key support.

Make sure to cache or debounce requests if building a high-traffic tool.

Last updated