> ## 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 a specific bank transaction by ID



## OpenAPI

````yaml api-reference/openapi.json get /api/banking/transactions/{id}
openapi: 3.0.0
info:
  title: Bigcapital
  description: Financial accounting software
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /api/banking/transactions/{id}:
    get:
      tags:
        - Banking Transactions
      summary: Get a specific bank transaction by ID
      operationId: BankingTransactionsController_getTransaction
      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: id
          required: true
          in: path
          description: Bank transaction ID
          schema:
            type: string
      responses:
        '200':
          description: Returns the bank transaction details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BankTransactionResponseDto'
        '404':
          description: Bank transaction not found
components:
  schemas:
    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

````