pairId:
getPairs() payload.
Documentation Index
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() payload.
interface Response {
prices: Record<string, {
ask: string;
bid: string;
mid: string;
}>;
}