> ## 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 uncategorized transactions for a specific bank account



## OpenAPI

````yaml api-reference/openapi.json get /api/banking/uncategorized/accounts/{accountId}
openapi: 3.0.0
info:
  title: Bigcapital
  description: Financial accounting software
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /api/banking/uncategorized/accounts/{accountId}:
    get:
      tags:
        - Banking Uncategorized Transactions
      summary: Get uncategorized transactions for a specific bank account
      operationId: >-
        BankingUncategorizedTransactionsController_getBankAccountUncategorizedTransactions
      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: accountId
          required: true
          in: path
          description: Bank account ID
          schema:
            type: number
        - 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: minDate
          required: false
          in: query
          description: Minimum date for filtering transactions
          schema:
            format: date-time
            example: '2023-01-01'
            type: string
        - name: maxDate
          required: false
          in: query
          description: Maximum date for filtering transactions
          schema:
            format: date-time
            example: '2023-12-31'
            type: string
        - name: minAmount
          required: false
          in: query
          description: Minimum amount for filtering transactions
          schema:
            example: 100
            type: number
        - name: maxAmount
          required: false
          in: query
          description: Maximum amount for filtering transactions
          schema:
            type: number
            example: 1000
      responses:
        '200':
          description: >-
            Returns a list of uncategorized transactions for the specified bank
            account

````