Fills
Time-range history
Order execution polling
getOrders() to determine whether a submission is still pending, cancelled, or executed.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Fetch executed fills, order history, and execution outcomes with the Ostium Builder SDK.
const fills = await client.getFills({ limit: 100 });
const weeklyFills = await client.getFillsByTime({
startTime: Date.now() - 7 * 24 * 60 * 60 * 1000,
});
const orders = await client.getOrders({
initiatedTxHashes: [txHash],
});
getOrders() to determine whether a submission is still pending, cancelled, or executed.