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

# Get Copytrades

> Get Polymarket copytrade configurations for a Polygon wallet.



## OpenAPI

````yaml /openapi.json get /api/v1/wallet/pol/{wallet_id}/copytrade
openapi: 3.1.0
info:
  title: Synthesis API
  version: 1.0.0
  description: Unified prediction market API for Polymarket and Kalshi.
servers:
  - url: https://synthesis.trade
security: []
tags:
  - name: Projects
    description: Create and manage project accounts, sessions, and account API keys.
  - name: Accounts
    description: >-
      Authenticate and manage account-level sessions, account API keys, and
      public account preferences.
  - name: Markets
    description: Unified market discovery and analytics across Polymarket and Kalshi.
  - name: Polymarket
    description: Polymarket market data, prices, orderbooks, trades, and holders endpoints.
  - name: Kalshi
    description: Kalshi market data, events, history, leaderboard, and profile endpoints.
  - name: Wallets
    description: Wallet management routes. Each wallet supports multiple chains.
  - name: Polygon
    description: >-
      Polygon wallet routes for balances, orders, minting, redemption,
      withdrawals, and swaps.
  - name: Polygon Copytrades
    description: Polymarket copytrade configuration and management for Polygon wallets.
  - name: Solana
    description: >-
      Solana wallet routes used for Kalshi balances, KYC, orders, redemption,
      and withdrawals.
  - name: News
    description: News endpoints with market and event matching.
  - name: WebSockets
    description: >-
      Real-time streaming endpoints for orderbooks, trades, balances, and live
      data feeds.
paths:
  /api/v1/wallet/pol/{wallet_id}/copytrade:
    get:
      tags:
        - Polygon Copytrades
      summary: Get Copytrades
      description: Get Polymarket copytrade configurations for a Polygon wallet.
      operationId: get-polygon-copytrades
      parameters:
        - name: wallet_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Polygon copytrades
          content:
            application/json:
              example:
                success: true
                response:
                  - copytrade_id: 01234567-89ab-cdef-0123-456789abcdef
                    order_ids: []
                    target: '0x742d35Cc6634C0532925a3b844Bc454e4438f44e'
                    mode: COPY
                    spent: '0'
                    settings:
                      filters:
                        resolution:
                          enabled: false
                          within_seconds: 0
                        price:
                          enabled: false
                          min: null
                          max: null
                        slippage:
                          enabled: true
                          max_cents: '5'
                        labels:
                          enabled: false
                          allow: []
                          deny: []
                        exposure:
                          enabled: false
                          max_market: null
                          max_event: null
                        amount:
                          enabled: false
                          min: null
                          max: null
                      buy:
                        enabled: true
                        insufficient_funds: BUY_MAX
                        sizing:
                          type: FIXED
                          amount: '10'
                        total:
                          type: NONE
                      sell:
                        enabled: true
                        insufficient_shares: SELL_MAX
                        sizing:
                          type: PERCENTAGE
                          percent: '1'
                        take_profit:
                          enabled: false
                          percent: null
                    status: ACTIVE
                    created_at: '2026-01-01T00:00:00'
                    updated_at: '2026-01-01T00:00:00'
      security:
        - AccountApiKey: []
        - AccountSession: []
components:
  securitySchemes:
    AccountApiKey:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Account secret API key.
    AccountSession:
      type: http
      scheme: bearer
      description: Account session token.

````