> ## 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 list of recognized transactions



## OpenAPI

````yaml api-reference/openapi.json get /api/banking/recognized
openapi: 3.0.0
info:
  title: Bigcapital
  description: Financial accounting software
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /api/banking/recognized:
    get:
      tags:
        - Banking Recognized Transactions
      summary: Get a list of recognized transactions
      operationId: BankingRecognizedTransactionsController_getRecognizedTransactions
      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: query
          required: false
          in: query
          description: Query parameters for filtering recognized transactions
          schema: {}
      responses:
        '200':
          description: Returns a list of recognized transactions
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/PaginatedResponseDto'
                  - properties:
                      data:
                        type: array
                        items:
                          $ref: >-
                            #/components/schemas/GetRecognizedTransactionResponseDto
components:
  schemas:
    PaginatedResponseDto:
      type: object
      properties:
        pagination:
          description: Pagination metadata
          allOf:
            - $ref: '#/components/schemas/Pagination'
      required:
        - pagination
    GetRecognizedTransactionResponseDto:
      type: object
      properties:
        uncategorizedTransactionId:
          type: number
          description: The unique identifier of the uncategorized transaction
          example: 123
        referenceNo:
          type: string
          description: The reference number of the transaction
          example: TRX-2024-001
        description:
          type: string
          description: The description of the transaction
          example: 'Payment for invoice #123'
        payee:
          type: string
          description: The payee of the transaction
          example: John Doe
        amount:
          type: number
          description: The amount of the transaction
          example: 1500.75
        formattedAmount:
          type: string
          description: The formatted amount of the transaction
          example: $1,500.75
        date:
          type: string
          description: The date of the transaction
          example: '2024-04-01'
        formattedDate:
          type: string
          description: The formatted date of the transaction
          example: Apr 1, 2024
        assignedAccountId:
          type: number
          description: The assigned account ID
          example: 10
        assignedAccountName:
          type: string
          description: The assigned account name
          example: Bank Account
        assignedAccountCode:
          type: string
          description: The assigned account code
          example: '1001'
        assignedPayee:
          type: string
          description: The assigned payee
          example: Jane Smith
        assignedMemo:
          type: string
          description: The assigned memo
          example: Office supplies
        assignedCategory:
          type: string
          description: The assigned category
          example: Office Expenses
        assignedCategoryFormatted:
          type: string
          description: The formatted assigned category
          example: Other Income
        withdrawal:
          type: number
          description: The withdrawal amount
          example: 500
        deposit:
          type: number
          description: The deposit amount
          example: 1000
        isDepositTransaction:
          type: boolean
          description: Whether this is a deposit transaction
          example: true
        isWithdrawalTransaction:
          type: boolean
          description: Whether this is a withdrawal transaction
          example: false
        formattedDepositAmount:
          type: string
          description: The formatted deposit amount
          example: $1,000.00
        formattedWithdrawalAmount:
          type: string
          description: The formatted withdrawal amount
          example: $500.00
        bankRuleId:
          type: string
          description: The bank rule ID
          example: BR-001
        bankRuleName:
          type: string
          description: The bank rule name
          example: Salary Rule
      required:
        - uncategorizedTransactionId
        - referenceNo
        - description
        - payee
        - amount
        - formattedAmount
        - date
        - formattedDate
        - assignedAccountId
        - assignedAccountName
        - assignedAccountCode
        - assignedPayee
        - assignedMemo
        - assignedCategory
        - assignedCategoryFormatted
        - withdrawal
        - deposit
        - isDepositTransaction
        - isWithdrawalTransaction
        - formattedDepositAmount
        - formattedWithdrawalAmount
        - bankRuleId
        - bankRuleName
    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

````