Skip to main content
A builder is an app or integration that routes order flow to Polymarket under a builder code, earning fees on the volume it brings. The Builders endpoints cover rankings and metadata, fees, the traders and tags behind a builder’s volume, retention and concentration, and both per-builder and global analytics.

Discover

Fees and attribution

Per-builder analytics

Across all builders

Builder-attributed trades

  • Pull the trades a builder routed by filtering market trades on builder_codes.

Example

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

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

const { data: builders } = await client.builders.getBuilders({ limit: 25 });

const { data: global } = await client.builders.getGlobal();
Last modified on June 16, 2026