> ## 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.

# Get multiple trader profiles

> Retrieve profiles for multiple traders in a single request. Returns an array of profiles.



## OpenAPI

````yaml https://api.struct.to/openapi.json get /polymarket/trader/profiles/batch
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/trader/profiles/batch:
    get:
      tags:
        - Trader
      summary: Get multiple trader profiles
      description: >-
        Retrieve profiles for multiple traders in a single request. Returns an
        array of profiles.
      operationId: get_trader_profiles_batch
      parameters:
        - name: addresses
          in: query
          description: 'Comma-separated list of trader addresses (max: 20)'
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Array of trader profiles
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PolymarketUserProfile'
        '400':
          description: Invalid request (empty addresses or more than 20)
components:
  schemas:
    PolymarketUserProfile:
      type: object
      description: Polymarket user profile (public API format)
      required:
        - proxy_wallet
        - display_username_public
        - verified_badge
        - is_creator
        - is_mod
      properties:
        proxy_wallet:
          type: string
        name:
          type:
            - string
            - 'null'
        pseudonym:
          type:
            - string
            - 'null'
        bio:
          type:
            - string
            - 'null'
        profile_image:
          type:
            - string
            - 'null'
        x_username:
          type:
            - string
            - 'null'
        display_username_public:
          type: boolean
        verified_badge:
          type: boolean
        user_id:
          type:
            - string
            - 'null'
        is_creator:
          type: boolean
        is_mod:
          type: boolean
        created_at:
          type:
            - string
            - 'null'

````