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

# Wallet - Transfer List

> Get transfer history for a wallet with optional token filter

<Note>
  Get token transfer history for a wallet — both incoming and outgoing. Supports pagination and filtering by token.
</Note>

**Related**: [GraphQL Transfers](/en/graphql/examples/transfers) | MCP: `wallet_get_balance_updates`


## OpenAPI

````yaml /en/api-reference/openapi-data-en.yaml GET /v2/wallet/{chain}/{walletAddress}/transfers
openapi: 3.1.0
info:
  title: Services API
  description: Services API
  contact:
    name: AI
    email: ai@sx.ai
  license:
    name: MIT
  version: '1.0'
servers:
  - url: https://api.chainstream.io
    description: Production
security:
  - bearer_auth: []
  - api_key_auth: []
tags:
  - name: Blockchain
    description: Blockchain related operations
  - name: Token
    description: Token related operations
  - name: Trade
    description: Trade related operations
  - name: Wallet
    description: Wallet related operations
  - name: Dex
    description: Dex related operations
  - name: Ranking
    description: Ranking related operations
  - name: DexPool
    description: DexPool related operations
  - name: Watchlist
    description: Watchlist related operations
  - name: KYT
    description: Kyt related operations
  - name: Webhook
    description: Webhook related operations
  - name: RedPacket
    description: Redpacket related operations
  - name: IPFS
    description: Ipfs related operations
  - name: DexScreener
    description: DexScreener related operations
paths:
  /v2/wallet/{chain}/{walletAddress}/transfers:
    get:
      tags:
        - Wallet
      summary: Wallet - Transfer List
      description: Get transfer history for a wallet with optional token filter
      operationId: get.wallet.transfers
      parameters:
        - name: chain
          in: path
          description: A chain name listed in supported networks
          required: true
          schema:
            $ref: '#/components/schemas/ChainSymbol'
          example: sol
        - name: walletAddress
          in: path
          description: An address of a wallet
          required: true
          schema:
            type: string
          example: AoM1wdFnhfVHA8KWPHiwLYeYdERoy4X6Nntu3XBvmbpa
        - name: cursor
          in: query
          description: Pagination cursor
          required: false
          schema:
            type: string
          example: eyJpZCI6IjEyMyJ9
        - name: limit
          in: query
          description: Number of results per page
          required: false
          schema:
            type: integer
            format: int64
            default: 20
          example: 20
        - name: direction
          in: query
          description: Pagination direction (next or prev)
          required: false
          schema:
            oneOf:
              - $ref: '#/components/schemas/PageDirection'
            default: next
          example: next
        - name: tokenAddress
          in: query
          description: An address of a token
          required: false
          schema:
            type: string
          example: So11111111111111111111111111111111111111112
        - name: fromTimestamp
          in: query
          description: Filter transfers after this timestamp (Unix epoch seconds)
          required: false
          schema:
            type: integer
            format: int64
          example: 1770163200000
        - name: toTimestamp
          in: query
          description: Filter transfers before this timestamp (Unix epoch seconds)
          required: false
          schema:
            type: integer
            format: int64
          example: 1770336000000
        - name: minTokenAmount
          in: query
          description: Minimum token amount filter (inclusive)
          required: false
          schema:
            type: string
          example: '0.01'
        - name: maxTokenAmount
          in: query
          description: Maximum token amount filter (inclusive)
          required: false
          schema:
            type: string
          example: '1000'
        - name: minTokenAmountInUsd
          in: query
          description: Minimum token amount in USD filter (inclusive)
          required: false
          schema:
            type: string
          example: '1'
        - name: maxTokenAmountInUsd
          in: query
          description: Maximum token amount in USD filter (inclusive)
          required: false
          schema:
            type: string
          example: '10000'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PageResponse_WalletTransfer'
components:
  schemas:
    ChainSymbol:
      type: string
      description: Supported blockchain chains
      enum:
        - sol
        - eth
        - bsc
    PageDirection:
      type: string
      description: Pagination direction
      enum:
        - next
        - prev
    PageResponse_WalletTransfer:
      type: object
      description: Generic pagination response
      required:
        - data
      properties:
        data:
          type: array
          items:
            type: object
            description: Wallet transfer
            required:
              - id
              - transactionSignature
              - blockTimestamp
              - tokenAddress
              - fromAddress
              - toAddress
              - amount
              - transferType
            properties:
              amount:
                type: string
                description: Transfer amount in token units
                example: '1.5'
              amountInUsd:
                type:
                  - string
                  - 'null'
                description: Transfer amount in USD
                example: '225.00'
              blockTimestamp:
                type: integer
                format: int64
                description: Block timestamp (milliseconds)
                example: 1717334400000
              fromAddress:
                type: string
                description: Sender address
                example: 54Pz1e35z9uoFdnxtzjp7xZQoFiofqhdayQWBMN7dsuy
              id:
                type: string
                description: Transfer record identifier
                example: transfer-123
              toAddress:
                type: string
                description: Receiver address
                example: 8X35rQUK2u9hfn8rMPwwr6ZSEUhbmfDPEapp589XyoM1
              tokenAddress:
                type: string
                description: Token contract address
                example: So11111111111111111111111111111111111111112
              transactionSignature:
                type: string
                description: Transaction signature
                example: 4tEHfECrLJm8N7dNCfQSjhLG7LqdMuZhzBhRy7VRhjCt
              transferType:
                type: string
                description: Transfer type (SEND or RECEIVE)
                example: SEND
          description: Page data
        endCursor:
          type:
            - string
            - 'null'
          description: Cursor for the end of current page
          example: eyJpZCI6ImVuZCJ9
        hasNext:
          type: boolean
          description: Whether there is a next page
          example: false
        hasPrev:
          type: boolean
          description: Whether there is a previous page
          example: false
        startCursor:
          type:
            - string
            - 'null'
          description: Cursor for the start of current page
          example: eyJpZCI6InN0YXJ0In0=
        total:
          type:
            - integer
            - 'null'
          format: int64
          description: >-
            Total number of items matching the query (not just the current
            page).

            When `None`, the caller should treat it as unknown
            (backward-compatible).
          example: 564094
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    api_key_auth:
      type: apiKey
      in: header
      name: X-API-KEY

````