---
title: "List Bank Reconciliation Reports"
method: GET
path: "/coa/api/v2/reconciliation"
tags: ["Bank Reconciliation"]
---

# List Bank Reconciliation Reports

`GET /coa/api/v2/reconciliation`

Retrieve a paginated list of bank reconciliation reports. Supports filtering by start_date, end_date, entity, account, and search query (q). Default sort is by statement_ending_date descending.

## Query parameters

- `account` integer
- `end_date` string
- `entity` integer
- `limit` integer
- `offset` integer
- `q` string
- `sort` string
- `start_date` string

## Response `200`

- PaginatedReconciliationReportV2ListList
  - `count` integer, required
  - `next` string, uri, nullable
  - `previous` string, uri, nullable
  - `results` ReconciliationReportV2List[], required
    - `id` integer, required
    - `customer` integer, required
    - `entity` integer, nullable
    - `entity_name` string, required
    - `account` integer, required
    - `account_name` string, required
    - `account_number` string, required
    - `account_type` string, required
    - `account_subtype` string, required
    - `currency` string
    - `statement_starting_date` string, date, nullable
    - `statement_ending_date` string, date, nullable
    - `starting_balance` number, double
    - `ending_balance` number, double
    - `total_credit_amount` number, double, nullable
    - `total_debit_amount` number, double, nullable
    - `adjustments` number, double, nullable
    - `created_at` string, date-time, required
    - `last_modified_at` string, date-time, required
    - `async_task` AsyncTask, required
      - `id` integer, required
      - `created_by_name` string, required
      - `name` string, required
      - `created_at` string, date-time, required
      - `status` 'PENDING' | 'PROCESSING' | 'COMPLETED' | 'FAILED' | 'CANCELLED' — * `PENDING` - Pending * `PROCESSING` - Processing * `COMPLETED` - Completed * `FAILED` - Failed * `CANCELLED` - Cancelled
      - `error_message` string, nullable
      - `error_type` string, nullable — Exception class name
      - `retries` integer — Number of retry attempts
      - `completed_at` string, date-time, nullable
      - `started_at` string, date-time, nullable — When task execution started
      - `celery_task_id` string, nullable — Celery task UUID from self.request.id
      - `root_task_id` string, nullable — Root task ID in workflow chain
      - `parent_task_id` string, nullable — Parent task ID if chained
      - `trace_id` string, nullable — APM distributed trace ID
      - `span_id` string, nullable — APM span ID
      - `task_args` unknown
      - `task_kwargs` unknown
      - `result` unknown
      - `content` unknown
      - `customer` integer, nullable, required
      - `created_by` integer, nullable, required
    - `matching_task` integer, nullable
    - `reconciled_by` integer, nullable
    - `reconciled_by_name` string, required
    - `reconciled_by_email` string, required
    - `reconciled_on` string, date, nullable
    - `approved_by` integer, nullable, required
    - `approved_by_name` string, required
    - `approved_by_email` string, required
    - `approved_on` string, date-time, nullable, required
    - `status` 'DRAFT' | 'PENDING_APPROVAL' | 'APPROVED' | 'DELETED' — * `DRAFT` - Draft * `PENDING_APPROVAL` - Pending Approval * `APPROVED` - Approved * `DELETED` - Deleted
    - `unmatched_statement_transactions` unknown
    - `statement_recognition_cost_usd` number, double, nullable — Estimated USD cost of AI bank-statement parsing for this report (from summed page token usage).
    - `statement_recognition_input_tokens` integer, nullable — Sum of input tokens from statement parsing across all pages (set on finalize).
    - `statement_recognition_output_tokens` integer, nullable — Sum of output tokens from statement parsing across all pages (set on finalize).
    - `statement_recognition_token_total` integer, nullable — Input plus output tokens for this report (set on finalize).
    - `statement_recognition_model_name` string, nullable — LLM model used for statement parsing when token totals were recorded.

---

[API](https://skmtc.net/campfire/apis/campfire-developer-apis.md) · [All operations](https://skmtc.net/campfire/apis/campfire-developer-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/campfire/campfire-developer-apis/revisions/6945ebc3180e/schema)
