Journal entries in a period
curl --request GET \
--url https://api.trycherry.ai/v1/journal-entries \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.trycherry.ai/v1/journal-entries"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.trycherry.ai/v1/journal-entries', 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://api.trycherry.ai/v1/journal-entries",
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://api.trycherry.ai/v1/journal-entries"
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://api.trycherry.ai/v1/journal-entries")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.trycherry.ai/v1/journal-entries")
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": "e7ad2f5b-4a6c-4d8e-9f0a-3b2c1d0e9f8a",
"entityId": "3f9c1e0a-8b2d-4e6f-9a01-5c7d2b8e4f10",
"entryDate": "2026-07-14",
"description": "AWS EMEA aws.amazon.com",
"sourceType": "bank_feed",
"postedAt": "2026-07-15T02:10:44.000Z",
"lines": [
{
"accountId": "d69c1e4a-3f5b-4c7d-0e8f-2a1b0c9d8e7f",
"debit": 129.99,
"credit": null,
"currency": "USD",
"memo": "Amazon Web Services"
},
{
"accountId": "b47a9c2e-1d3f-4a5b-8c6d-0e9f8a7b6c5d",
"debit": null,
"credit": 129.99,
"currency": "USD",
"memo": null
}
]
},
{
"id": "f8be3a6c-5b7d-4e9f-0a1b-4c3d2e1f0a9b",
"entityId": "3f9c1e0a-8b2d-4e6f-9a01-5c7d2b8e4f10",
"entryDate": "2026-07-15",
"description": "STRIPE PAYOUT ACME STUDIO",
"sourceType": "bank_feed",
"postedAt": "2026-07-16T02:09:12.000Z",
"lines": [
{
"accountId": "b47a9c2e-1d3f-4a5b-8c6d-0e9f8a7b6c5d",
"debit": 2500,
"credit": null,
"currency": "USD",
"memo": null
},
{
"accountId": "c58b0d3f-2e4a-4b6c-9d7e-1f0a9b8c7d6e",
"debit": null,
"credit": 2500,
"currency": "USD",
"memo": "Stripe payout"
}
]
}
],
"meta": {
"pagination": {
"limit": 50,
"offset": 0,
"nextOffset": null
}
}
}{
"error": "<string>",
"reason": "<string>"
}{
"error": "<string>",
"reason": "<string>"
}{
"error": "<string>",
"reason": "<string>"
}Journal
Journal entries in a period
The double-entry journal between from and to (both required), oldest first, each entry with its balanced debit/credit lines. Add accountNumber to see only the entries touching one account — the drill-down behind any statement or trial-balance figure.
GET
/
journal-entries
Journal entries in a period
curl --request GET \
--url https://api.trycherry.ai/v1/journal-entries \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.trycherry.ai/v1/journal-entries"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.trycherry.ai/v1/journal-entries', 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://api.trycherry.ai/v1/journal-entries",
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://api.trycherry.ai/v1/journal-entries"
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://api.trycherry.ai/v1/journal-entries")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.trycherry.ai/v1/journal-entries")
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": "e7ad2f5b-4a6c-4d8e-9f0a-3b2c1d0e9f8a",
"entityId": "3f9c1e0a-8b2d-4e6f-9a01-5c7d2b8e4f10",
"entryDate": "2026-07-14",
"description": "AWS EMEA aws.amazon.com",
"sourceType": "bank_feed",
"postedAt": "2026-07-15T02:10:44.000Z",
"lines": [
{
"accountId": "d69c1e4a-3f5b-4c7d-0e8f-2a1b0c9d8e7f",
"debit": 129.99,
"credit": null,
"currency": "USD",
"memo": "Amazon Web Services"
},
{
"accountId": "b47a9c2e-1d3f-4a5b-8c6d-0e9f8a7b6c5d",
"debit": null,
"credit": 129.99,
"currency": "USD",
"memo": null
}
]
},
{
"id": "f8be3a6c-5b7d-4e9f-0a1b-4c3d2e1f0a9b",
"entityId": "3f9c1e0a-8b2d-4e6f-9a01-5c7d2b8e4f10",
"entryDate": "2026-07-15",
"description": "STRIPE PAYOUT ACME STUDIO",
"sourceType": "bank_feed",
"postedAt": "2026-07-16T02:09:12.000Z",
"lines": [
{
"accountId": "b47a9c2e-1d3f-4a5b-8c6d-0e9f8a7b6c5d",
"debit": 2500,
"credit": null,
"currency": "USD",
"memo": null
},
{
"accountId": "c58b0d3f-2e4a-4b6c-9d7e-1f0a9b8c7d6e",
"debit": null,
"credit": 2500,
"currency": "USD",
"memo": "Stripe payout"
}
]
}
],
"meta": {
"pagination": {
"limit": 50,
"offset": 0,
"nextOffset": null
}
}
}{
"error": "<string>",
"reason": "<string>"
}{
"error": "<string>",
"reason": "<string>"
}{
"error": "<string>",
"reason": "<string>"
}Authorizations
Cherry API key, created in the app. Sent as Authorization: Bearer ck_live_….
Query Parameters
Period start, YYYY-MM-DD.
Period end, YYYY-MM-DD.
Only entries with a line on this ledger account.
Scope to one legal entity (UUID from GET /entities). Defaults to the tenant's primary entity.
Page size, 1-200. Default 50.
Required range:
1 <= x <= 200Row offset. Pass the previous page's meta.pagination.nextOffset to fetch the next page; nextOffset is null once the last page is reached.
Required range:
x >= 0⌘I