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

# 지갑 - 전송 목록

> 선택적 토큰 필터를 적용한 지갑의 전송 내역 조회

<Note>
  지갑의 토큰 전송 내역(수신 및 송신)을 가져옵니다. 페이지네이션과 토큰별 필터링을 지원합니다.
</Note>

**관련**: [GraphQL 전송](/ko/graphql/examples/transfers) | MCP: `wallet_get_balance_updates`


## OpenAPI

````yaml /ko/api-reference/openapi-data-ko.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: 블록체인 관련 작업
  - name: Token
    description: 토큰 관련 작업
  - name: Trade
    description: 거래 관련 작업
  - name: Wallet
    description: 지갑 관련 작업
  - name: Dex
    description: DEX 관련 작업
  - name: Ranking
    description: 랭킹 관련 작업
  - name: DexPool
    description: DEX 풀 관련 작업
  - name: Watchlist
    description: 워치리스트 관련 작업
  - name: KYT
    description: KYT 관련 작업
  - name: Webhook
    description: Webhook 관련 작업
  - name: RedPacket
    description: 레드패킷 관련 작업
  - name: IPFS
    description: IPFS 관련 작업
  - name: DexScreener
    description: DexScreener 관련 작업
paths:
  /v2/wallet/{chain}/{walletAddress}/transfers:
    get:
      tags:
        - Wallet
      summary: 지갑 - 전송 목록
      description: 선택적 토큰 필터를 적용한 지갑의 전송 내역 조회
      operationId: get.wallet.transfers
      parameters:
        - name: chain
          in: path
          description: 지원되는 네트워크에 나열된 체인 이름
          required: true
          schema:
            $ref: '#/components/schemas/ChainSymbol'
          example: sol
        - name: walletAddress
          in: path
          description: 지갑 주소
          required: true
          schema:
            type: string
          example: AoM1wdFnhfVHA8KWPHiwLYeYdERoy4X6Nntu3XBvmbpa
        - name: cursor
          in: query
          description: 페이지네이션 커서
          required: false
          schema:
            type: string
          example: eyJpZCI6IjEyMyJ9
        - name: limit
          in: query
          description: 페이지당 결과 수
          required: false
          schema:
            type: integer
            format: int64
            default: 20
          example: 20
        - name: direction
          in: query
          description: 페이지네이션 방향 (next 또는 prev)
          required: false
          schema:
            oneOf:
              - $ref: '#/components/schemas/PageDirection'
            default: next
          example: next
        - name: tokenAddress
          in: query
          description: 토큰 주소
          required: false
          schema:
            type: string
          example: So11111111111111111111111111111111111111112
        - name: fromTimestamp
          in: query
          description: 해당 타임스탬프 이후의 전송 필터링 (Unix 초 단위 타임스탬프)
          required: false
          schema:
            type: integer
            format: int64
          example: 1770163200000
        - name: toTimestamp
          in: query
          description: 해당 타임스탬프 이전의 전송 필터링 (Unix 초 단위 타임스탬프)
          required: false
          schema:
            type: integer
            format: int64
          example: 1770336000000
        - name: minTokenAmount
          in: query
          description: 최소 토큰 수량 필터 (이상)
          required: false
          schema:
            type: string
          example: '0.01'
        - name: maxTokenAmount
          in: query
          description: 최대 토큰 수량 필터 (이하)
          required: false
          schema:
            type: string
          example: '1000'
        - name: minTokenAmountInUsd
          in: query
          description: 최소 토큰 USD 금액 필터 (이상)
          required: false
          schema:
            type: string
          example: '1'
        - name: maxTokenAmountInUsd
          in: query
          description: 최대 토큰 USD 금액 필터 (이하)
          required: false
          schema:
            type: string
          example: '10000'
      responses:
        '200':
          description: 성공 응답
          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: 토큰 단위 전송 수량
                example: '1.5'
              amountInUsd:
                type:
                  - string
                  - 'null'
                description: USD 기준 전송 금액
                example: '225.00'
              blockTimestamp:
                type: integer
                format: int64
                description: 블록 타임스탬프 (밀리초)
                example: 1717334400000
              fromAddress:
                type: string
                description: 발신 주소
                example: 54Pz1e35z9uoFdnxtzjp7xZQoFiofqhdayQWBMN7dsuy
              id:
                type: string
                description: 전송 기록 식별자
                example: transfer-123
              toAddress:
                type: string
                description: 수신 주소
                example: 8X35rQUK2u9hfn8rMPwwr6ZSEUhbmfDPEapp589XyoM1
              tokenAddress:
                type: string
                description: 토큰 컨트랙트 주소
                example: So11111111111111111111111111111111111111112
              transactionSignature:
                type: string
                description: 트랜잭션 서명
                example: 4tEHfECrLJm8N7dNCfQSjhLG7LqdMuZhzBhRy7VRhjCt
              transferType:
                type: string
                description: 전송 유형 (SEND 또는 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

````