> ## 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 Wallet Transfers

> Get transfers across all chains for a wallet.



## OpenAPI

````yaml /openapi.json get /api/v1/wallet/{wallet_id}/transfers
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/{wallet_id}/transfers:
    get:
      tags:
        - Wallets
      summary: Get Wallet Transfers
      description: Get transfers across all chains for a wallet.
      operationId: get-wallet-transfers
      parameters:
        - name: wallet_id
          in: path
          required: true
          schema:
            type: string
        - name: limit
          in: query
          required: false
          description: Maximum transfers to return. Capped at `1000`.
          schema:
            type: integer
            default: 100
            example: 100
        - name: offset
          in: query
          required: false
          description: Pagination offset.
          schema:
            type: integer
            default: 0
            example: 0
      responses:
        '200':
          description: Wallet transfers
          content:
            application/json:
              example:
                success: true
                response:
                  - venue: polymarket
                    tx_hash: >-
                      0xa1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2
                    transfer_type: DEPOSIT
                    asset_type: ERC20
                    asset_id: USDC.e
                    address: '0x1234567890abcdef1234567890abcdef12345678'
                    from_address: '0x742d35Cc6634C0532925a3b844Bc454e4438f44e'
                    to_address: '0x1234567890abcdef1234567890abcdef12345678'
                    amount: '100.000'
                    type: DEPOSIT
                    created_at: '2026-01-01T00:00:00'
                  - venue: kalshi
                    tx_hash: 5QqJcC8Rj9o3v7x2Yp4mN6bT1rE8uKzA2sD4fG7hJ9kL
                    transfer_type: DEPOSIT
                    asset_type: SPL_TOKEN
                    asset_id: USDC
                    address: 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU
                    from_address: ...
                    to_address: 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU
                    amount: '50.000'
                    type: DEPOSIT
                    created_at: '2025-01-15T11: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.

````