Skip to main content
Holders are the wallets currently holding a position in a market. The Holders endpoints return the current holder set for a market or a single position, plus historical holder snapshots over time for markets, positions, and events.

Current holders

History

Position context

Example

import { StructClient } from "@structbuild/sdk";

const client = new StructClient({ apiKey: "YOUR_API_KEY" });

const { data: holders } = await client.holders.getMarketHolders({ condition_id: "0xabc..." });

const { data: history } = await client.holders.getMarketHoldersHistory({ condition_id: "0xabc..." });
Last modified on June 16, 2026