ccxt_public_call
Invoke public CCXT unified or implicit methods on a selected exchange to retrieve market data. Discover capabilities with ccxt_describe_exchange for niche endpoints.
Instructions
Invoke a public CCXT unified or implicit method on a selected exchange. Use ccxt_describe_exchange first for capability discovery when calling niche methods.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| args | No | Positional arguments for the target CCXT method, in the same order that CCXT expects them | |
| method | Yes | CCXT method name to invoke, including unified methods like 'fetchTicker' or implicit methods like 'publicGetTicker' | |
| params | No | Optional CCXT params object passed as the final argument when the target method accepts exchange-specific overrides | |
| sandbox | No | Whether to enable exchange sandbox mode when supported by the selected exchange | |
| exchange | Yes | CCXT exchange ID (for example: 'binance', 'kraken', 'bybit') | |
| marketType | No | Exchange market type to target when an exchange supports multiple product families | |
| loadMarkets | No | Whether to call loadMarkets before invocation when market metadata is needed (default: true) | |
| reloadMarkets | No | Whether to force a fresh market reload instead of reusing cached exchange metadata (default: false) |