Skip to main content
GET
/
v2
/
polymarket
/
builders
/
{builder_code}
/
timeseries
Get Builder Timeseries
curl --request GET \
  --url https://api.predexon.com/v2/polymarket/builders/{builder_code}/timeseries \
  --header 'x-api-key: <api-key>'
{
  "builder_code": "<string>",
  "window": "<string>",
  "bucket": "<string>",
  "points": [
    {
      "timestamp": 123,
      "volume_usd": 123,
      "builder_fee_usd": 123,
      "trade_count": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.predexon.com/llms.txt

Use this file to discover all available pages before exploring further.

Bucketed volume_usd, builder_fee_usd, and trade_count for a single builder, returned as an ordered array of (timestamp, ...) points. Use this for charting builder activity over time.
V2-only. Builder attribution is a Polymarket V2 concept — V1 fills are excluded.

Buckets

bucketUse with
day (default)window=30d or all
hourwindow=24h or 7d

Windows

24h, 7d, 30d (default), or all. Each timestamp is the Unix-seconds start of the bucket.

Authorizations

x-api-key
string
header
required

Path Parameters

builder_code
string
required

Builder code (bytes32 hex)

Query Parameters

window
string
default:30d

Rolling window: 24h, 7d, 30d, or all

bucket
string
default:day

Bucket size: 'day' or 'hour'

Response

Successful Response

Response for builder timeseries endpoint.

builder_code
string
required
window
string
required
bucket
string
required

Bucket size: 'day' or 'hour'

points
BuilderTimeseriesPoint · object[]
required