get_supported_dexes
Retrieve a list of supported decentralized exchanges (DEXes) on a specified blockchain network to enable DeFi trading decisions. Supports pagination for efficient data access.
Instructions
Get list of supported DEXes on a specific network
Input Schema
Name | Required | Description | Default |
---|---|---|---|
network | Yes | Network ID (e.g., 'eth', 'bsc', 'polygon_pos') | |
page | No | Page number for pagination (optional, default: 1) |
Input Schema (JSON Schema)
{
"properties": {
"network": {
"description": "Network ID (e.g., 'eth', 'bsc', 'polygon_pos')",
"type": "string"
},
"page": {
"description": "Page number for pagination (optional, default: 1)",
"type": "integer"
}
},
"required": [
"network"
],
"type": "object"
}