One journal entry
curl --request GET \
--url https://api.trycherry.ai/v1/journal-entries/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.trycherry.ai/v1/journal-entries/{id}"
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/{id}', 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/{id}",
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/{id}"
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/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.trycherry.ai/v1/journal-entries/{id}")
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
}
]
}
}{
"error": "<string>",
"reason": "<string>"
}{
"error": "<string>",
"reason": "<string>"
}{
"error": "<string>",
"reason": "<string>"
}{
"error": "<string>",
"reason": "<string>"
}Journal
One journal entry
A single journal entry with its lines, by UUID.
GET
/
journal-entries
/
{id}
One journal entry
curl --request GET \
--url https://api.trycherry.ai/v1/journal-entries/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.trycherry.ai/v1/journal-entries/{id}"
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/{id}', 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/{id}",
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/{id}"
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/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.trycherry.ai/v1/journal-entries/{id}")
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
}
]
}
}{
"error": "<string>",
"reason": "<string>"
}{
"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_….
Path Parameters
Response
The journal entry
One balanced double-entry posting. Lines debit and credit ledger accounts; debits equal credits within every entry.
Show child attributes
Show child attributes
⌘I