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



## OpenAPI

````yaml /api-reference/openapi.yaml get /accounts/{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.9
    description: Sandbox
  - url: https://api.polygon.technology/v0.9
    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: Webhook
  - name: CashIns
  - name: CashLocation
  - name: Sandbox
  - name: Simulation
paths:
  /accounts/{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.
      operationId: listAccountTransactions
      parameters:
        - description: Accepts a wallet ID (`wlt_` prefix).
          in: path
          name: id
          required: true
          schema:
            type: string
        - $ref: '#/components/parameters/PaginationParams.limit'
        - $ref: '#/components/parameters/PaginationParams.startingAfter'
        - $ref: '#/components/parameters/PaginationParams.endingBefore'
        - in: query
          name: transactionType
          required: false
          schema:
            $ref: '#/components/schemas/TransactionType'
        - in: query
          name: since
          required: false
          schema:
            type: string
        - in: query
          name: until
          required: false
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountTransactionList'
          description: The request has succeeded.
components:
  parameters:
    PaginationParams.limit:
      in: query
      name: limit
      required: false
      schema:
        format: int32
        type: integer
    PaginationParams.startingAfter:
      in: query
      name: startingAfter
      required: false
      schema:
        type: string
    PaginationParams.endingBefore:
      in: query
      name: endingBefore
      required: false
      schema:
        type: string
  schemas:
    TransactionType:
      description: 'Type of account ledger entry: a credit, debit, hold, or release.'
      enum:
        - credit
        - debit
        - hold
        - release
      type: string
    AccountTransactionList:
      description: A paginated list of account ledger entries.
      properties:
        data:
          items:
            $ref: '#/components/schemas/AccountTransaction'
          type: array
        hasMore:
          description: >-
            True when more rows exist beyond this page in the direction of
            travel (forward by default, backward when `endingBefore` was
            supplied).
          type: boolean
        nextCursor:
          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.
          type: string
        object:
          type: string
        previousCursor:
          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.
          type: string
      type: object
    AccountTransaction:
      description: >-
        A single ledger entry on an account: a credit, debit, hold, or release,
        along with the resulting balance.
      properties:
        accountId:
          type: string
        amount:
          type: string
        balanceAfter:
          type: string
        blockchainTransactionId:
          type: string
        createdAt:
          type: string
          format: date-time
        creditCurrencyAmount:
          type: string
        creditCurrencyCode:
          type: string
        currency:
          type: string
        debitCurrencyAmount:
          type: string
        debitCurrencyCode:
          type: string
        description:
          type: string
        exchangeRate:
          type: string
        feeCurrencyCode:
          type: string
        fromWalletAddress:
          type: string
        id:
          type: string
        object:
          enum:
            - accountTransaction
          type: string
        orderType:
          type: string
        providerTransactionRef:
          type: string
        sourceId:
          type: string
        sourceType:
          type: string
        status:
          type: string
        toWalletAddress:
          type: string
        totalFees:
          type: string
        type:
          $ref: '#/components/schemas/TransactionType'
      type: object
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Token from POST /auth/token

````