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": "58oQChx4yWmvKdwLLZzBi4ChoCc2fqCUWBkwMihLYQo2"
}

Response shape

Always returns: chain, pair_address, pair_count, pairs

FieldTypeDescription
chainstringChain id that was queried
pair_addressstringPair address that was queried
pair_countnumberNumber of pairs returned (>=1; an empty result raises not_found)
pairsarrayMatching pairs
Full JSON Schema
{
  "type": "object",
  "description": "Pair detail for one pair address on one chain",
  "properties": {
    "chain": {
      "type": "string",
      "description": "Chain id that was queried"
    },
    "pair_address": {
      "type": "string",
      "description": "Pair address that was queried"
    },
    "pair_count": {
      "type": "number",
      "description": "Number of pairs returned (>=1; an empty result raises not_found)"
    },
    "pairs": {
      "type": "array",
      "description": "Matching pairs",
      "items": {
        "type": "object",
        "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 address/name/symbol"
          },
          "quoteToken": {
            "type": "object",
            "description": "Quote token address/name/symbol"
          },
          "priceNative": {
            "type": "string",
            "description": "Price in the quote token"
          },
          "priceUsd": {
            "type": [
              "string",
              "null"
            ],
            "description": "Price in USD"
          },
          "txns": {
            "type": "object",
            "description": "Buy/sell counts over m5/h1/h6/h24"
          },
          "volume": {
            "type": "object",
            "description": "Volume over m5/h1/h6/h24"
          },
          "liquidity": {
            "type": "object",
            "description": "Liquidity in USD and both tokens"
          },
          "fdv": {
            "type": [
              "number",
              "null"
            ],
            "description": "Fully diluted valuation"
          },
          "marketCap": {
            "type": [
              "number",
              "null"
            ],
            "description": "Market capitalisation"
          }
        }
      }
    }
  },
  "required": [
    "chain",
    "pair_address",
    "pair_count",
    "pairs"
  ]
}

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 September 10, 2026