{
  "schemaVersion": "1.0",
  "item": {
    "slug": "dexscreener",
    "name": "Dexscreener API",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/BRS999/dexscreener",
    "canonicalUrl": "https://clawhub.ai/BRS999/dexscreener",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/dexscreener",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dexscreener",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/dexscreener-cli.mjs"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/dexscreener"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/dexscreener",
    "agentPageUrl": "https://openagent3.xyz/skills/dexscreener/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dexscreener/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dexscreener/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "DexScreener",
        "body": "Query DexScreener using the local CLI script."
      },
      {
        "title": "Quick Start",
        "body": "# Search pairs\nnode {baseDir}/scripts/dexscreener-cli.mjs search_pairs --query \"solana\" --limit 5\n\n# Get pair details\nnode {baseDir}/scripts/dexscreener-cli.mjs get_pair --chain \"solana\" --pair \"<pair_address>\"\n\n# Top boosted tokens\nnode {baseDir}/scripts/dexscreener-cli.mjs top_boosted_tokens --limit 10"
      },
      {
        "title": "1. Add to daily market scan",
        "body": "Use in morning/evening briefs:\n\ndexscreener search_pairs + top_boosted_tokens"
      },
      {
        "title": "2. Track specific tokens",
        "body": "node {baseDir}/scripts/dexscreener-cli.mjs pairs_by_tokens --token-addresses \"<token1>,<token2>\" --limit 10"
      },
      {
        "title": "3. Check order/boost status for candidates",
        "body": "node {baseDir}/scripts/dexscreener-cli.mjs token_orders --chain \"solana\" --token \"<token_address>\" --limit 10\nnode {baseDir}/scripts/dexscreener-cli.mjs latest_boosted_tokens --limit 20"
      },
      {
        "title": "Search and Pair Lookup",
        "body": "node {baseDir}/scripts/dexscreener-cli.mjs search_pairs --query \"SOL/USDC\" --limit 10\nnode {baseDir}/scripts/dexscreener-cli.mjs get_pair --chain \"solana\" --pair \"<pair_address>\"\nnode {baseDir}/scripts/dexscreener-cli.mjs pairs_by_tokens --token-addresses \"<token1>,<token2>\" --limit 10"
      },
      {
        "title": "Profiles and Boosts",
        "body": "node {baseDir}/scripts/dexscreener-cli.mjs latest_token_profiles --limit 10\nnode {baseDir}/scripts/dexscreener-cli.mjs latest_boosted_tokens --limit 10\nnode {baseDir}/scripts/dexscreener-cli.mjs top_boosted_tokens --limit 10"
      },
      {
        "title": "Token Orders",
        "body": "node {baseDir}/scripts/dexscreener-cli.mjs token_orders --chain \"solana\" --token \"<token_address>\" --limit 10"
      },
      {
        "title": "Output Features",
        "body": "Typical payloads include:\n\nPair metadata (chain, dex, pair address, symbols)\nPrice and price change fields\nLiquidity and volume fields\nBoost/profile/order metadata\n\nDefault output is JSON for easy piping and automation."
      },
      {
        "title": "API",
        "body": "Uses DexScreener public API endpoints (read-only):\n\nBase URL: https://api.dexscreener.com\nCLI supports override via DEXSCREENER_BASE_URL"
      },
      {
        "title": "Security and Permissions",
        "body": "No API key required.\n\nWhat this skill does:\n\nMakes HTTPS GET requests to DexScreener API\nReads public market/pair/profile/boost/order data\n\nWhat this skill does not do:\n\nNo wallet connections\nNo transactions or trading\nNo credential handling\nNo autonomous invocation (disable-model-invocation: true)"
      }
    ],
    "body": "DexScreener\n\nQuery DexScreener using the local CLI script.\n\nQuick Start\n# Search pairs\nnode {baseDir}/scripts/dexscreener-cli.mjs search_pairs --query \"solana\" --limit 5\n\n# Get pair details\nnode {baseDir}/scripts/dexscreener-cli.mjs get_pair --chain \"solana\" --pair \"<pair_address>\"\n\n# Top boosted tokens\nnode {baseDir}/scripts/dexscreener-cli.mjs top_boosted_tokens --limit 10\n\nAfter Install - Suggested Setup\n1. Add to daily market scan\n\nUse in morning/evening briefs:\n\ndexscreener search_pairs + top_boosted_tokens\n\n2. Track specific tokens\nnode {baseDir}/scripts/dexscreener-cli.mjs pairs_by_tokens --token-addresses \"<token1>,<token2>\" --limit 10\n\n3. Check order/boost status for candidates\nnode {baseDir}/scripts/dexscreener-cli.mjs token_orders --chain \"solana\" --token \"<token_address>\" --limit 10\nnode {baseDir}/scripts/dexscreener-cli.mjs latest_boosted_tokens --limit 20\n\nCommands\nSearch and Pair Lookup\nnode {baseDir}/scripts/dexscreener-cli.mjs search_pairs --query \"SOL/USDC\" --limit 10\nnode {baseDir}/scripts/dexscreener-cli.mjs get_pair --chain \"solana\" --pair \"<pair_address>\"\nnode {baseDir}/scripts/dexscreener-cli.mjs pairs_by_tokens --token-addresses \"<token1>,<token2>\" --limit 10\n\nProfiles and Boosts\nnode {baseDir}/scripts/dexscreener-cli.mjs latest_token_profiles --limit 10\nnode {baseDir}/scripts/dexscreener-cli.mjs latest_boosted_tokens --limit 10\nnode {baseDir}/scripts/dexscreener-cli.mjs top_boosted_tokens --limit 10\n\nToken Orders\nnode {baseDir}/scripts/dexscreener-cli.mjs token_orders --chain \"solana\" --token \"<token_address>\" --limit 10\n\nOutput Features\n\nTypical payloads include:\n\nPair metadata (chain, dex, pair address, symbols)\nPrice and price change fields\nLiquidity and volume fields\nBoost/profile/order metadata\n\nDefault output is JSON for easy piping and automation.\n\nAPI\n\nUses DexScreener public API endpoints (read-only):\n\nBase URL: https://api.dexscreener.com\nCLI supports override via DEXSCREENER_BASE_URL\nSecurity and Permissions\n\nNo API key required.\n\nWhat this skill does:\n\nMakes HTTPS GET requests to DexScreener API\nReads public market/pair/profile/boost/order data\n\nWhat this skill does not do:\n\nNo wallet connections\nNo transactions or trading\nNo credential handling\nNo autonomous invocation (disable-model-invocation: true)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/BRS999/dexscreener",
    "publisherUrl": "https://clawhub.ai/BRS999/dexscreener",
    "owner": "BRS999",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/dexscreener",
    "downloadUrl": "https://openagent3.xyz/downloads/dexscreener",
    "agentUrl": "https://openagent3.xyz/skills/dexscreener/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dexscreener/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dexscreener/agent.md"
  }
}