Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Fetch current mid, bid, and ask prices for all Ostium pairs.
const { prices } = await client.getAllPrices();
pairId
console.log(prices['0']);
getPairs()
interface Response { prices: Record<string, { ask: string; bid: string; mid: string; }>; }