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

# Wallet Transfers



## OpenAPI

````yaml openapi.json GET /gateway/v1/wallet/transfers
openapi: 3.1.0
info:
  title: Hermod
  version: 0.0.1
servers:
  - url: https://api.asksurf.ai
security: []
paths:
  /gateway/v1/wallet/transfers:
    get:
      tags:
        - Wallet
      summary: Wallet Transfer History
      description: >-
        Returns recent token transfers **sent or received by a wallet**.


        Pass the **wallet address** in `address` — returns all ERC-20/SPL token
        transfers where this wallet is the sender or receiver.


        **Included fields:** token contract, counterparty, raw amount, block
        timestamp.


        Use this to audit a wallet's token flow (e.g. inflows, outflows, airdrop
        receipts).


        **Lookup:** `address` (wallet, raw 0x hex or base58 — ENS not
        supported). Filter by `chain` — supports `ethereum`, `base`, `solana`.


        **Data refresh:** ~24 hours · **Chains:** Ethereum, Base (Solana uses a
        different source with no delay)
      operationId: wallet-transfers
      parameters:
        - description: >-
            Wallet address — must be a raw address (0x-prefixed hex for EVM,
            base58 for Solana). ENS names like `vitalik.eth` are not supported;
            resolve to a 0x address first.
          explode: false
          in: query
          name: address
          required: true
          schema:
            description: >-
              Wallet address — must be a raw address (0x-prefixed hex for EVM,
              base58 for Solana). ENS names like `vitalik.eth` are not
              supported; resolve to a 0x address first.
            examples:
              - '0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045'
            type: string
        - description: Chain. Can be `ethereum`, `base`, or `solana`.
          explode: false
          in: query
          name: chain
          schema:
            default: ethereum
            description: Chain. Can be `ethereum`, `base`, or `solana`.
            enum:
              - ethereum
              - base
              - solana
            examples:
              - ethereum
            type: string
        - description: >-
            Filter by transfer direction relative to the queried wallet. `in`
            for incoming, `out` for outgoing. Omit for both directions.
          explode: false
          in: query
          name: flow
          schema:
            description: >-
              Filter by transfer direction relative to the queried wallet. `in`
              for incoming, `out` for outgoing. Omit for both directions.
            enum:
              - in
              - out
            examples:
              - in
            type: string
        - description: >-
            Filter by token contract address. Use
            `0x0000000000000000000000000000000000000000` for native token
            transfers. Omit for all tokens.
          explode: false
          in: query
          name: token
          schema:
            description: >-
              Filter by token contract address. Use
              `0x0000000000000000000000000000000000000000` for native token
              transfers. Omit for all tokens.
            examples:
              - '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48'
            type: string
        - description: Results per page
          explode: false
          in: query
          name: limit
          schema:
            default: 20
            description: Results per page
            examples:
              - 20
            format: int64
            maximum: 100
            minimum: 1
            type: integer
        - description: Pagination offset
          explode: false
          in: query
          name: offset
          schema:
            default: 0
            description: Pagination offset
            examples:
              - 0
            format: int64
            minimum: 0
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponseWalletTransferItem'
          description: OK
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataAPIError'
          description: Error
      security:
        - AccessToken: []
components:
  schemas:
    DataResponseWalletTransferItem:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/DataResponseWalletTransferItem.json
          format: uri
          readOnly: true
          type: string
        data:
          items:
            $ref: '#/components/schemas/WalletTransferItem'
          type:
            - array
            - 'null'
        meta:
          $ref: '#/components/schemas/OffsetMeta'
      required:
        - data
        - meta
      type: object
    DataAPIError:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/DataAPIError.json
          format: uri
          readOnly: true
          type: string
        error:
          $ref: '#/components/schemas/DataAPIErrorDetail'
      required:
        - error
      type: object
    WalletTransferItem:
      additionalProperties: false
      properties:
        activity_type:
          description: Transfer activity type (Solana only, e.g. ACTIVITY_SPL_TRANSFER)
          type: string
        amount:
          description: Decimal-adjusted transfer amount as a string
          type: string
        amount_usd:
          description: Transfer value in USD at the time of the transaction
          format: double
          type: number
        flow:
          description: 'Transfer direction relative to the queried wallet: `in` or `out`'
          type: string
        from_address:
          description: Sender wallet address
          type: string
        timestamp:
          description: Unix timestamp in seconds when the transfer occurred
          format: int64
          type: integer
        to_address:
          description: Recipient wallet address
          type: string
        token_address:
          description: Token contract address (EVM) or SPL mint address (Solana)
          type: string
        token_symbol:
          description: Token ticker symbol (available for EVM chains from on-chain data)
          type: string
        tx_hash:
          description: Transaction hash (EVM) or transaction signature (Solana)
          type: string
      required:
        - tx_hash
        - from_address
        - to_address
        - amount
        - timestamp
      type: object
    OffsetMeta:
      additionalProperties: false
      properties:
        cached:
          description: Whether this response was served from cache
          type: boolean
        credits_used:
          description: Credits deducted for this request
          format: int64
          type: integer
        limit:
          description: Maximum number of items returned in this response
          format: int64
          type: integer
        offset:
          description: Number of items skipped (pagination offset)
          format: int64
          type: integer
        total:
          description: >-
            Total number of matching items (before pagination). Omitted when
            total is unknown.
          format: int64
          type: integer
      required:
        - limit
        - offset
        - credits_used
        - cached
      type: object
    DataAPIErrorDetail:
      additionalProperties: false
      properties:
        code:
          type: string
        message:
          type: string
      required:
        - code
        - message
      type: object

````