get_token_pools_v2
Retrieve Uniswap V2 token pairs by token address and generate a markdown-formatted table with details like pair ID, volume, and reserves for easy analysis and integration.
Instructions
Query all Uniswap V2 pairs for a specific token and return as a formatted markdown table.
Parameters:
token_address (str): The Ethereum address of the token to query (e.g., '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48').
ctx (Context): The API context for logging and error handling.
Returns:
A markdown-formatted string containing a table with columns: Version, ID, Pair, Volume USD, ReserveUSD.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
token_address | Yes |
Input Schema (JSON Schema)
{
"properties": {
"token_address": {
"title": "Token Address",
"type": "string"
}
},
"required": [
"token_address"
],
"title": "get_token_pools_v2Arguments",
"type": "object"
}