get_prices
Compare cross-exchange mark prices for perpetual futures symbols to identify trading opportunities across multiple DEX platforms.
Instructions
Get cross-exchange prices for symbols. Fetches mark prices from all 3 exchanges for comparison
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbols | No | Symbols to fetch prices for (e.g. ['BTC','ETH']). Omit for top assets |
Implementation Reference
- src/pacifica/client.ts:107-109 (handler)The low-level API client method that fetches prices from the `/info/prices` endpoint.
async getPrices(): Promise<PriceInfo[]> { return this.get("/info/prices"); }