Dexscreener API
PassAudited by ClawScan on May 10, 2026.
Overview
This is a coherent, read-only DexScreener lookup skill; it runs a local Node CLI that makes disclosed network requests and does not require wallet access or credentials.
This skill appears safe for read-only DexScreener market lookups. Before installing, note that it runs a local Node script and sends your lookup terms, token addresses, and pair addresses to the configured API endpoint. Do not override DEXSCREENER_BASE_URL unless you trust the destination.
Findings (1)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Market lookup inputs may be sent to DexScreener or to another endpoint if the user configures DEXSCREENER_BASE_URL.
The CLI sends user-supplied query, token, chain, and pair parameters to a network API, and the destination can be changed with an environment variable. This is disclosed and purpose-aligned, but it is still network tool use the user should notice.
const BASE_URL = process.env.DEXSCREENER_BASE_URL || "https://api.dexscreener.com"; ... const res = await fetch(url, { signal: controller.signal });Use the default DexScreener endpoint unless you intentionally trust an alternate base URL, and avoid entering private or sensitive data as query text.
