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

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":{}}}'

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 May 21, 2026