Updated 229 documentation pages reflecting latest official docs changes: - API Reference: authentication, rate-limits, clients-sdks, market-data endpoints - Developers: CLOB, Gamma Markets, RTDS, Sports Websocket, Builders, CTF - Trading: fees, bridge, orders, orderbook, clients - Polymarket Learn: get-started guides, deposits, trading - Builders: tiers, api-keys, profile, examples, order-attribution - Quickstart: overview, first-order, websocket guides - Concepts: markets-events, prices-orderbook, resolution - Market Makers: getting-started, trading, liquidity-rewards - Resources: error-codes, contract-addresses, blockchain-data
2.8 KiB
2.8 KiB
Documentation Index
Fetch the complete documentation index at: https://docs.polymarket.com/llms.txt Use this file to discover all available pages before exploring further.
Get daily builder volume time-series
OpenAPI
openapi: 3.0.3
info:
title: Polymarket Data API
version: 1.0.0
description: >
HTTP API for Polymarket data. This specification documents all public
routes.
servers:
- url: https://data-api.polymarket.com
description: Relative server (same host)
security: []
tags:
- name: Data API Status
description: Data API health check
- name: Core
- name: Builders
- name: Misc
paths:
/v1/builders/volume:
get:
tags:
- Builders
summary: Get daily builder volume time-series
parameters:
- in: query
name: timePeriod
schema:
type: string
enum:
- DAY
- WEEK
- MONTH
- ALL
default: DAY
description: |
The time period to fetch daily records for.
responses:
'200':
description: Success - Returns array of daily volume records
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/BuilderVolumeEntry'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
components:
schemas:
BuilderVolumeEntry:
type: object
properties:
dt:
type: string
format: date-time
description: The timestamp for this volume entry in ISO 8601 format
example: '2025-11-15T00:00:00Z'
builder:
type: string
description: The builder name or identifier
builderLogo:
type: string
description: URL to the builder's logo image
verified:
type: boolean
description: Whether the builder is verified
volume:
type: number
description: Trading volume for this builder on this date
activeUsers:
type: integer
description: Number of active users for this builder on this date
rank:
type: string
description: The rank position of the builder on this date
ErrorResponse:
type: object
properties:
error:
type: string
required:
- error
Built with Mintlify.