Finance
List Reconciliation Runs
The tenant’s recorded reconciliation runs, newest first — when the books were checked, by whom, and whether they tied out.
GET
/
v1
/
finance
/
reconciliation
/
runs
List recorded reconciliation runs (audit trail)
curl --request GET \
--url https://billing.example.com/v1/finance/reconciliation/runs \
--header 'Authorization: Bearer <token>'import requests
url = "https://billing.example.com/v1/finance/reconciliation/runs"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://billing.example.com/v1/finance/reconciliation/runs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://billing.example.com/v1/finance/reconciliation/runs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://billing.example.com/v1/finance/reconciliation/runs"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://billing.example.com/v1/finance/reconciliation/runs")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://billing.example.com/v1/finance/reconciliation/runs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"run_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"run_at": "2023-11-07T05:31:56Z",
"invoices_checked": 123,
"paid_invoices_checked": 123,
"total_discrepancies": 123,
"tb_compared": true,
"tb_accounts_checked": 123,
"tb_transfers_checked": 123,
"created_at": "2023-11-07T05:31:56Z"
}
]
}{
"error": {
"code": "BAD_REQUEST",
"message": "<string>"
}
}Returns the tenant’s recorded reconciliation runs, newest first — when each
check ran, who ran it, and whether it tied out (
total_discrepancies == 0).
Runs are recorded by Run and Record Reconciliation;
the plain reconciliation report leaves
no trace here.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | No | Maximum runs to return (default 50, max 200). |
Example Request
curl "https://api.recurso.dev/v1/finance/reconciliation/runs?limit=50" \
-H "Authorization: Bearer $API_KEY"
Response
{
"data": [
{
"id": "3f2a1b4c-5d6e-4f70-8a9b-0c1d2e3f4a5b",
"run_by": "b9071c55-0e14-4720-80f3-665613ceb7de",
"run_at": "2026-08-14T09:15:02Z",
"invoices_checked": 58231,
"paid_invoices_checked": 41207,
"total_discrepancies": 0,
"tb_compared": true,
"tb_accounts_checked": 214,
"tb_transfers_checked": 17352,
"created_at": "2026-08-14T09:15:02Z"
}
]
}
Run Fields
| Field | Type | Description |
|---|---|---|
id | string (uuid) | The recorded run’s id — fetch it with Get Reconciliation Run |
run_by | string (uuid), nullable | The user who ran it; null for a scheduled/system run |
run_at | string (date-time) | When the reconciliation ran |
invoices_checked | integer | Non-draft invoices covered |
paid_invoices_checked | integer | Paid invoices whose payment postings were verified |
total_discrepancies | integer | Discrepancies found — 0 means the books tied out |
tb_compared | boolean | Whether the TigerBeetle comparison pass ran |
tb_accounts_checked / tb_transfers_checked | integer | Scope of the TigerBeetle pass |
created_at | string (date-time) | When the summary row was recorded |
The list carries summaries only. To see what a run actually found, fetch it
with Get Reconciliation Run,
which returns the discrepancy rows persisted at record time.
⌘I
List recorded reconciliation runs (audit trail)
curl --request GET \
--url https://billing.example.com/v1/finance/reconciliation/runs \
--header 'Authorization: Bearer <token>'import requests
url = "https://billing.example.com/v1/finance/reconciliation/runs"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://billing.example.com/v1/finance/reconciliation/runs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://billing.example.com/v1/finance/reconciliation/runs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://billing.example.com/v1/finance/reconciliation/runs"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://billing.example.com/v1/finance/reconciliation/runs")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://billing.example.com/v1/finance/reconciliation/runs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"run_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"run_at": "2023-11-07T05:31:56Z",
"invoices_checked": 123,
"paid_invoices_checked": 123,
"total_discrepancies": 123,
"tb_compared": true,
"tb_accounts_checked": 123,
"tb_transfers_checked": 123,
"created_at": "2023-11-07T05:31:56Z"
}
]
}{
"error": {
"code": "BAD_REQUEST",
"message": "<string>"
}
}