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

# List wallet transactions

> Returns the transaction history for the specified wallet, most recent
first, with cursor-based pagination and optional type/date filters. Each
entry is a single account-ledger movement (credit, debit, hold, or
release), covering both inbound and outbound activity on the wallet. Each
carries a `balanceAfter` snapshot taken when the entry was written — see
that field; it is not a guaranteed running total.



## OpenAPI

````yaml /api-reference/openapi.yaml get /wallets/{id}/transactions
openapi: 3.0.3
info:
  title: Polygon OMS Public API
  version: v26.05.28-0001
  description: >-
    Unified API for moving money between crypto and fiat. Three ways to move
    money: Transactions (instant, wallet or card funded, including Cash-In for
    in-person cash deposits), Deposit Addresses (reusable crypto deposit
    configurations), and Virtual Accounts (dedicated bank accounts that
    auto-convert fiat to crypto). Standard transactions follow a two-step flow:
    create a Quote (pricing), then create a Transaction (execution). Cash-in
    codes generate a one-time deposit code for in-person cash deposits at retail
    locations.
  contact:
    name: Polygon OMS
    url: https://oms.polygon.technology
servers:
  - url: https://sandbox-api.polygon.technology/v0.13
    description: Sandbox
  - url: https://api.polygon.technology/v0.13
    description: Production
security:
  - BearerAuth: []
tags:
  - name: Auth
    description: Authentication via FrontEgg
  - name: Customers
    description: Customer management and KYC
  - name: Customer
  - name: Wallet
  - name: Quote
  - name: Transaction
  - name: CashIns
  - name: CashLocation
  - name: Sandbox
  - name: VirtualAccount
  - name: Counterparty
  - name: ExternalAccount
  - name: Reference
  - name: DepositAddress
paths:
  /wallets/{id}/transactions:
    get:
      tags:
        - Wallet
      summary: List wallet transactions
      description: >-
        Returns the transaction history for the specified wallet, most recent

        first, with cursor-based pagination and optional type/date filters. Each

        entry is a single account-ledger movement (credit, debit, hold, or

        release), covering both inbound and outbound activity on the wallet.
        Each

        carries a `balanceAfter` snapshot taken when the entry was written — see

        that field; it is not a guaranteed running total.
      operationId: listWalletTransactions
      parameters:
        - name: id
          in: path
          required: true
          description: Wallet ID (`wlt_` prefix; legacy `acc_` also accepted).
          schema:
            type: string
        - $ref: '#/components/parameters/PaginationParams.limit'
        - $ref: '#/components/parameters/PaginationParams.startingAfter'
        - $ref: '#/components/parameters/PaginationParams.endingBefore'
        - name: transactionType
          in: query
          required: false
          description: Filter by ledger entry type.
          schema:
            $ref: '#/components/schemas/TransactionType'
        - name: since
          in: query
          required: false
          description: Inclusive start of the date range.
          schema:
            type: string
        - name: until
          in: query
          required: false
          description: Inclusive end of the date range.
          schema:
            type: string
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountTransactionList'
components:
  parameters:
    PaginationParams.limit:
      name: limit
      in: query
      required: false
      description: >-
        Page size, supported range 1-100. The default and maximum are
        per-resource

        (see each endpoint's description; most endpoints default to

        50) and are resolved at runtime from configuration. Values outside the
        range

        are clamped to the nearest bound rather than rejected. The range is
        published

        machine-readably via the `x-minimum`/`x-maximum` OpenAPI extensions
        below —

        deliberately NOT via `@minValue`/`@maxValue`, which emit JSON-Schema

        `minimum`/`maximum` and make the generated SDK (Zod) reject values the
        server

        accepts and clamps. See `PaginatedList.limit` for the effective value
        applied.
      schema:
        type: integer
        format: int32
      x-maximum: 100
      x-minimum: 1
    PaginationParams.startingAfter:
      name: startingAfter
      in: query
      required: false
      schema:
        type: string
    PaginationParams.endingBefore:
      name: endingBefore
      in: query
      required: false
      schema:
        type: string
  schemas:
    TransactionType:
      type: string
      enum:
        - credit
        - debit
        - hold
        - release
      description: 'Type of account ledger entry: a credit, debit, hold, or release.'
    AccountTransactionList:
      type: object
      properties:
        object:
          type: string
          description: Resource type discriminator.
        limit:
          type: integer
          format: int32
          description: |-
            The effective page size applied to this response, after clamping an
            out-of-range or unset requested `limit` into the supported bound.
        hasMore:
          type: boolean
          description: >-
            True when more rows exist beyond this page in the direction of
            travel (forward by default, backward when `endingBefore` was
            supplied).
        nextCursor:
          type: string
          description: |-
            Opaque cursor pointing at the last item in this page. Present when
            `data` is non-empty. Pass as `startingAfter` to fetch the next page;
            `hasMore=false` signals no more pages forward.
        previousCursor:
          type: string
          description: >-
            Opaque cursor pointing at the first item in this page. Present when

            `data` is non-empty. Pass as `endingBefore` to page backward; when

            this yields an empty response the client is at the start of the
            list.
        data:
          type: array
          items:
            $ref: '#/components/schemas/AccountTransaction'
          description: The page of results.
      description: A paginated list of account ledger entries.
    AccountTransaction:
      type: object
      properties:
        id:
          allOf:
            - $ref: '#/components/schemas/typeId'
          description: Unique identifier.
        object:
          type: string
          enum:
            - accountTransaction
          description: Resource type discriminator. Always "accountTransaction".
        accountId:
          allOf:
            - $ref: '#/components/schemas/typeId'
          description: Wallet/account ID.
        type:
          $ref: '#/components/schemas/TransactionType'
        status:
          type: string
          description: Current lifecycle status.
        amount:
          type: string
          description: Amount as a decimal string.
        currency:
          type: string
          description: ISO 4217 currency code.
        creditCurrencyAmount:
          type: string
          description: Amount credited, in `creditCurrencyCode`.
        creditCurrencyCode:
          type: string
          description: Currency credited.
        debitCurrencyAmount:
          type: string
          description: Amount debited, in `debitCurrencyCode`.
        debitCurrencyCode:
          type: string
          description: Currency debited.
        exchangeRate:
          type: string
          description: Units of destination asset per 1 unit of source asset.
        totalFees:
          type: string
          description: Total fees for this entry.
        feeCurrencyCode:
          type: string
          description: Currency the fees are denominated in.
        orderType:
          type: string
          description: Order type of the underlying trade.
        providerTransactionRef:
          type: string
          description: Upstream provider's transaction reference.
        blockchainTransactionId:
          type: string
          description: On-chain transaction identifier.
        fromWalletAddress:
          type: string
          description: Sending wallet address.
        toWalletAddress:
          type: string
          description: Receiving wallet address.
        balanceAfter:
          type: string
          description: >-
            Account balance recorded when this entry was written. A
            point-in-time

            value, not a guaranteed running total: consecutive entries need not
            differ

            by their amounts, and entries are immutable so the value is never
            revised.

            For fiat-wallet entries it is read from the balance mirrored from
            the

            upstream provider — which is authoritative and already reflects the

            movement by the time it reports it — and is adjusted by this entry's
            amount

            only where the ordering guarantees the mirror predates the movement.
            Use

            the wallet balance endpoint for the current balance.
        sourceType:
          type: string
          description: Type of the originating resource.
        sourceId:
          type: string
          description: >-
            Polymorphic source correlation key. Transaction sources are rendered
            as txn_ TypeIDs; non-resource reconciliation/request keys remain
            raw.
        description:
          type: string
          description: Human-readable description.
        createdAt:
          type: string
          format: date-time
          description: When the resource was created.
      description: >-
        A single ledger entry on an account: a credit, debit, hold, or release,
        along with the resulting balance.
    typeId:
      type: string
      pattern: >-
        ^[a-z]+_([0-9a-hjkmnp-tv-z]{26}|[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})$
      description: >-
        Public TypeID, e.g. `txn_01h455vb4pex5vsknk084sn02q`; legacy UUID
        suffixes are accepted until non-v7 rows are retired.
      x-go-type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Token from POST /auth/token

````