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

# Get bank account transactions



## OpenAPI

````yaml api-reference/openapi.json get /api/banking/transactions
openapi: 3.0.0
info:
  title: Bigcapital
  description: Financial accounting software
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /api/banking/transactions:
    get:
      tags:
        - Banking Transactions
      summary: Get bank account transactions
      operationId: BankingTransactionsController_getBankAccountTransactions
      parameters:
        - name: Authorization
          in: header
          description: >-
            Value must be 'Bearer <token>' where <token> is an API key prefixed
            with 'bc_' or a JWT token.
          required: true
          schema:
            type: string
            example: Bearer bc_1234567890abcdef
        - name: organization-id
          in: header
          description: >-
            Required if Authorization is a JWT token. The organization ID to
            operate within.
          required: true
          schema:
            type: string
        - name: page
          required: false
          in: query
          description: Page number for pagination
          schema:
            type: number
            example: 1
        - name: pageSize
          required: false
          in: query
          description: Number of items per page
          schema:
            example: 10
            type: number
        - name: accountId
          required: true
          in: query
          description: Bank account ID
          schema:
            type: number
            example: 1
        - description: Number of decimal places to display
          required: false
          name: precision
          in: query
          schema:
            example: 2
            type: number
        - description: Whether to divide the number by 1000
          required: false
          name: divideOn1000
          in: query
          schema:
            example: false
            type: boolean
        - description: Whether to show zero values
          required: false
          name: showZero
          in: query
          schema:
            type: boolean
            example: true
        - description: How to format money values
          required: false
          name: formatMoney
          in: query
          schema:
            example: total
            enum:
              - total
              - always
              - none
            type: string
        - description: How to format negative numbers
          required: false
          name: negativeFormat
          in: query
          schema:
            example: parentheses
            enum:
              - parentheses
              - mines
            type: string
      responses:
        '200':
          description: Returns a list of bank account transactions
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/PaginatedResponseDto'
                  - properties:
                      data:
                        type: array
                        items:
                          $ref: '#/components/schemas/BankTransactionResponseDto'
components:
  schemas:
    PaginatedResponseDto:
      type: object
      properties:
        pagination:
          description: Pagination metadata
          allOf:
            - $ref: '#/components/schemas/Pagination'
      required:
        - pagination
    BankTransactionResponseDto:
      type: object
      properties:
        withdrawal:
          type: number
          description: The withdrawal amount
          example: 1000.5
        deposit:
          type: number
          description: The deposit amount
          example: 2000.75
        runningBalance:
          type: number
          description: The running balance after the transaction
          example: 3000.25
        formattedWithdrawal:
          type: string
          description: Formatted withdrawal amount with currency symbol
          example: $1,000.50
        formattedDeposit:
          type: string
          description: Formatted deposit amount with currency symbol
          example: $2,000.75
        formattedRunningBalance:
          type: string
          description: Formatted running balance with currency symbol
          example: $3,000.25
        transactionNumber:
          type: string
          description: Unique transaction number
          example: TRX-2024-001
        referenceNumber:
          type: string
          description: Reference number for the transaction
          example: REF-2024-001
        referenceId:
          type: number
          description: ID of the reference entity
          example: 12345
        referenceType:
          type: string
          description: Type of the reference entity
          example: INVOICE
        formattedTransactionType:
          type: string
          description: Formatted transaction type
          example: Bank Transfer
        balance:
          type: number
          description: Current balance
          example: 5000
        formattedBalance:
          type: string
          description: Formatted balance with currency symbol
          example: $5,000.00
        date:
          format: date-time
          type: string
          description: Transaction date
          example: '2024-03-20T10:30:00Z'
        formattedDate:
          type: string
          description: Formatted transaction date
          example: March 20, 2024
        status:
          type: string
          description: Transaction status
          example: COMPLETED
        formattedStatus:
          type: string
          description: Formatted transaction status
          example: Completed
        uncategorizedTransactionId:
          type: number
          description: ID of the uncategorized transaction
          example: 67890
      required:
        - withdrawal
        - deposit
        - runningBalance
        - formattedWithdrawal
        - formattedDeposit
        - formattedRunningBalance
        - transactionNumber
        - referenceNumber
        - referenceId
        - referenceType
        - formattedTransactionType
        - balance
        - formattedBalance
        - date
        - formattedDate
        - status
        - formattedStatus
        - uncategorizedTransactionId
    Pagination:
      type: object
      properties:
        total:
          type: number
          description: Total number of items across all pages
          example: 100
        page:
          type: number
          description: Current page number (1-based)
          example: 1
          minimum: 1
        pageSize:
          type: number
          description: Number of items per page
          example: 10
          minimum: 1
      required:
        - total
        - page
        - pageSize

````