> ## Documentation Index
> Fetch the complete documentation index at: https://docs.struct.to/llms.txt
> Use this file to discover all available pages before exploring further.

# List builder metadata

> Paginated list of all builders with registered display metadata, ordered alphabetically by name.



## OpenAPI

````yaml https://api.struct.to/openapi.json get /polymarket/builders/metadata
openapi: 3.1.0
info:
  title: Polymarket API
  description: >-
    RESTful API for querying Polymarket prediction markets data including
    events, markets, traders, holders, and real-time metrics
  license:
    name: ''
  version: 1.0.0
servers:
  - url: https://api.struct.to/v1
security: []
paths:
  /polymarket/builders/metadata:
    get:
      tags:
        - Builders
      summary: List builder metadata
      description: >-
        Paginated list of all builders with registered display metadata, ordered
        alphabetically by name.
      operationId: list_builder_metadata
      parameters:
        - name: limit
          in: query
          description: Max entries (default 100, max 500)
          required: false
          schema:
            type: integer
            format: int64
        - name: offset
          in: query
          description: Offset for pagination (default 0)
          required: false
          schema:
            type: integer
            format: int64
        - name: pagination_key
          in: query
          description: Opaque cursor (alternative to offset)
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Builder metadata list
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BuilderMetadata'
components:
  schemas:
    BuilderMetadata:
      type: object
      description: |-
        One row of `polymarket_builder_metadata`. Includes `builder_code` since
        it's used as the keying field on the standalone metadata endpoints.
      required:
        - builder_code
        - name
      properties:
        builder_code:
          type: string
        name:
          type: string
        website:
          type:
            - string
            - 'null'
        twitter:
          type:
            - string
            - 'null'
        icon_url:
          type:
            - string
            - 'null'
        description:
          type:
            - string
            - 'null'

````