get_pair

Pack: dexscreener · Endpoint: https://gateway.pipeworx.io/dexscreener/mcp

Pair detail (price USD/native, liquidity, 24h volume, 5m/1h/6h/24h tx counts).

Parameters

NameTypeRequiredDescription
chainstringyesChain id — ethereum | solana | bsc | polygon | arbitrum | base | …
pair_addressstringyesPair / pool address

Example call

Arguments

{
  "chain": "ethereum",
  "pair_address": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640"
}

curl

curl -X POST https://gateway.pipeworx.io/dexscreener/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_pair","arguments":{"chain":"ethereum","pair_address":"0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_pair', {
  "chain": "ethereum",
  "pair_address": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640"
});

More examples

{
  "chain": "solana",
  "pair_address": "8BnEgHoWFysVcuFFX7QztDmzuH5B27Cs64meL2LjwGs"
}

Response shape

FieldTypeDescription
pairobjectPair information including price, liquidity, and volume
Full JSON Schema
{
  "type": "object",
  "description": "Pair detail response from DEX Screener API",
  "properties": {
    "pair": {
      "type": "object",
      "description": "Pair information including price, liquidity, and volume",
      "properties": {
        "chainId": {
          "type": "string",
          "description": "Chain identifier"
        },
        "dexId": {
          "type": "string",
          "description": "DEX identifier"
        },
        "url": {
          "type": "string",
          "description": "URL to pair on DEX Screener"
        },
        "pairAddress": {
          "type": "string",
          "description": "Pair/pool contract address"
        },
        "baseToken": {
          "type": "object",
          "description": "Base token details",
          "properties": {
            "address": {
              "type": "string",
              "description": "Token contract address"
            },
            "name": {
              "type": "string",
              "description": "Token name"
            },
            "symbol": {
              "type": "string",
              "description": "Token symbol"
            }
          }
        },
        "quoteToken": {
          "type": "object",
          "description": "Quote token details",
          "properties": {
            "address": {
              "type": "string",
              "description": "Token contract address"
            },
            "name": {
              "type": "string",
              "description": "Token name"
            },
            "symbol": {
              "type": "string",
              "description": "Token symbol"
            }
          }
        },
        "priceNative": {
          "type": "string",
          "description": "Price in native token"
        },
        "priceUsd": {
          "type": "string",
          "description": "Price in USD"
        },
        "txns": {
          "type": "object",
          "description": "Transaction counts",
          "properties": {
            "m5": {
              "type": "object"
            },
            "h1": {
              "type": "object"
            },
            "h6": {
              "type": "object"
            },
            "h24": {
              "type": "object"
            }
          }
        },
        "volume": {
          "type": "object",
          "description": "Volume data",
          "properties": {
            "h24": {
              "type": [
                "number",
                "null"
              ],
              "description": "24-hour volume in USD"
            }
          }
        },
        "liquidity": {
          "type": "object",
          "description": "Liquidity data",
          "properties": {
            "usd": {
              "type": [
                "number",
                "null"
              ],
              "description": "Total liquidity in USD"
            },
            "base": {
              "type": [
                "number",
                "null"
              ],
              "description": "Base token liquidity"
            },
            "quote": {
              "type": [
                "number",
                "null"
              ],
              "description": "Quote token liquidity"
            }
          }
        },
        "marketCap": {
          "type": [
            "number",
            "null"
          ],
          "description": "Market capitalization"
        },
        "fdv": {
          "type": [
            "number",
            "null"
          ],
          "description": "Fully diluted valuation"
        }
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "dexscreener": {
      "url": "https://gateway.pipeworx.io/dexscreener/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026