get_pairs_by_chain_and_address
Retrieve decentralized exchange (DEX) pair data using chain ID and pair address for real-time market insights and token profiles across multiple blockchains.
Instructions
Get one or multiple pairs by chain and pair address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | Chain ID (e.g., "solana") | |
pairId | Yes | Pair address |
Input Schema (JSON Schema)
{
"properties": {
"chainId": {
"description": "Chain ID (e.g., \"solana\")",
"type": "string"
},
"pairId": {
"description": "Pair address",
"type": "string"
}
},
"required": [
"chainId",
"pairId"
],
"type": "object"
}