Skip to main content
GET
/
public
/
v2
/
bank-match
/
status-counts
Check bank-match pipeline progress
curl --request GET \
  --url https://api.dualentry.com/public/v2/bank-match/status-counts/ \
  --header 'X-API-KEY: <api-key>'
{
  "unprocessed": 123,
  "deterministic_suggested": 123,
  "awaiting_ai": 123,
  "ai_in_progress": 123,
  "ai_suggested": 123,
  "ai_no_match": 123,
  "no_match": 123,
  "excluded": 123,
  "matched": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.dualentry.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-KEY
string
header
required

Response

200 - application/json

OK

How many bank-feed rows are in each pipeline stage.

Poll this after calling /populate/ to see when the pipeline has finished. The three "still working" stages are unprocessed, awaiting_ai, and ai_in_progress. When all three hit zero, you're done and the terminal stages hold the results.

unprocessed
integer
required
deterministic_suggested
integer
required
awaiting_ai
integer
required
ai_in_progress
integer
required
ai_suggested
integer
required
ai_no_match
integer
required
no_match
integer
required
excluded
integer
required
matched
integer
required
Last modified on May 28, 2026