← Back to Skills Marketplace
brs999

Dexscreener API

by Ben · GitHub ↗ · v1.0.0
cross-platform ✓ Security Clean
815
Downloads
1
Stars
3
Active Installs
1
Versions
Install in OpenClaw
/install dexscreener
Description
Query DexScreener market data - search pairs, inspect liquidity/volume, check boosted tokens, and fetch token orders.
README (SKILL.md)

DexScreener

Query DexScreener using the local CLI script.

Quick Start

# Search pairs
node {baseDir}/scripts/dexscreener-cli.mjs search_pairs --query "solana" --limit 5

# Get pair details
node {baseDir}/scripts/dexscreener-cli.mjs get_pair --chain "solana" --pair "\x3Cpair_address>"

# Top boosted tokens
node {baseDir}/scripts/dexscreener-cli.mjs top_boosted_tokens --limit 10

After Install - Suggested Setup

1. Add to daily market scan

Use in morning/evening briefs:

dexscreener search_pairs + top_boosted_tokens

2. Track specific tokens

node {baseDir}/scripts/dexscreener-cli.mjs pairs_by_tokens --token-addresses "\x3Ctoken1>,\x3Ctoken2>" --limit 10

3. Check order/boost status for candidates

node {baseDir}/scripts/dexscreener-cli.mjs token_orders --chain "solana" --token "\x3Ctoken_address>" --limit 10
node {baseDir}/scripts/dexscreener-cli.mjs latest_boosted_tokens --limit 20

Commands

Search and Pair Lookup

node {baseDir}/scripts/dexscreener-cli.mjs search_pairs --query "SOL/USDC" --limit 10
node {baseDir}/scripts/dexscreener-cli.mjs get_pair --chain "solana" --pair "\x3Cpair_address>"
node {baseDir}/scripts/dexscreener-cli.mjs pairs_by_tokens --token-addresses "\x3Ctoken1>,\x3Ctoken2>" --limit 10

Profiles and Boosts

node {baseDir}/scripts/dexscreener-cli.mjs latest_token_profiles --limit 10
node {baseDir}/scripts/dexscreener-cli.mjs latest_boosted_tokens --limit 10
node {baseDir}/scripts/dexscreener-cli.mjs top_boosted_tokens --limit 10

Token Orders

node {baseDir}/scripts/dexscreener-cli.mjs token_orders --chain "solana" --token "\x3Ctoken_address>" --limit 10

Output Features

Typical payloads include:

  • Pair metadata (chain, dex, pair address, symbols)
  • Price and price change fields
  • Liquidity and volume fields
  • Boost/profile/order metadata

Default output is JSON for easy piping and automation.


API

Uses DexScreener public API endpoints (read-only):

  • Base URL: https://api.dexscreener.com
  • CLI supports override via DEXSCREENER_BASE_URL

Security and Permissions

No API key required.

What this skill does:

  • Makes HTTPS GET requests to DexScreener API
  • Reads public market/pair/profile/boost/order data

What this skill does not do:

  • No wallet connections
  • No transactions or trading
  • No credential handling
  • No autonomous invocation (disable-model-invocation: true)
Usage Guidance
This skill is a simple, read-only CLI wrapper for the public DexScreener API and appears coherent. Before installing: ensure you have a trusted node runtime and are comfortable allowing the skill to make outbound HTTPS requests. Note that you (or an admin) can override the API base URL via DEXSCREENER_BASE_URL — only set this to a trusted endpoint, because pointing it at an attacker-controlled server would cause the CLI to fetch arbitrary data. No API keys or wallet access are required. If you need higher assurance, run the provided script in a sandbox and inspect network traffic to confirm it only queries the expected api.dexscreener.com endpoints.
Capability Analysis
Type: OpenClaw Skill Name: dexscreener Version: 1.0.0 The skill bundle is benign. It provides a CLI to query the public DexScreener API for market data. The `SKILL.md` explicitly sets `disable-model-invocation: true`, preventing the AI agent from autonomously executing the skill, which is a strong defense against prompt injection. The `dexscreener-cli.mjs` script uses `encodeURIComponent` for all user-supplied URL path components, preventing URL injection, and only performs HTTPS GET requests to the specified API. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, or obfuscation. The `DEXSCREENER_BASE_URL` environment variable allows overriding the API endpoint, but this is a configuration option, not an inherent vulnerability or malicious act by the skill itself, as the default is the legitimate DexScreener API.
Capability Assessment
Purpose & Capability
Name/description match the code and instructions: the script issues read-only HTTP GETs to DexScreener endpoints. Required binary (node) and examples in SKILL.md are appropriate for the stated purpose.
Instruction Scope
SKILL.md instructs running the included Node script against DexScreener public API endpoints. The instructions do not ask for unrelated file reads, credentials, or data exfiltration. The script only constructs API URLs, performs fetch GETs, and writes JSON to stdout.
Install Mechanism
No install spec is present (instruction-only plus a local CLI script), so nothing is downloaded or written during installation. This is low-risk and consistent with the skill's purpose.
Credentials
No required environment variables or credentials are declared. The code does honor optional environment variables (DEXSCREENER_BASE_URL and DEXSCREENER_TIMEOUT_MS) which are reasonable for testing/override purposes and do not involve secrets.
Persistence & Privilege
The skill does not request persistent or elevated privileges; always is false and disable-model-invocation is true (no autonomous invocation). It does not modify other skills or system configs.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install dexscreener
  3. After installation, invoke the skill by name or use /dexscreener
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of the dexscreener skill. - Enables querying DexScreener market data via CLI: search pairs, get details, and check liquidity/volume. - Supports fetching boosted tokens, token profiles, and token orders. - Output is JSON by default for easy scripting and automation. - No API key required; uses public DexScreener API endpoints. - Skill must be invoked directly by users (does not run automatically).
Metadata
Slug dexscreener
Version 1.0.0
License
All-time Installs 3
Active Installs 3
Total Versions 1
Frequently Asked Questions

What is Dexscreener API?

Query DexScreener market data - search pairs, inspect liquidity/volume, check boosted tokens, and fetch token orders. It is an AI Agent Skill for Claude Code / OpenClaw, with 815 downloads so far.

How do I install Dexscreener API?

Run "/install dexscreener" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Dexscreener API free?

Yes, Dexscreener API is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Dexscreener API support?

Dexscreener API is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Dexscreener API?

It is built and maintained by Ben (@brs999); the current version is v1.0.0.

💬 Comments