The tax obligations calendar
curl --request GET \
--url https://api.trycherry.ai/v1/obligations \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.trycherry.ai/v1/obligations"
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/obligations', 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/obligations",
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/obligations"
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/obligations")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.trycherry.ai/v1/obligations")
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": "5e2f7a9b-1c3d-4e5f-8a6b-7c8d9e0f1a2b",
"entityId": "3f9c1e0a-8b2d-4e6f-9a01-5c7d2b8e4f10",
"country": "US",
"type": "federal_estimated_tax",
"period": "2026-Q3",
"frequency": "quarterly",
"deadline": "2026-09-15",
"status": "upcoming",
"amountDue": 6150,
"currency": "USD",
"filedAt": null,
"jurisdictionLevel": "federal",
"stateCode": null,
"authority": "IRS",
"formReference": "Form 1040-ES"
},
{
"id": "6f3a8b0c-2d4e-4f6a-9b7c-8d9e0f1a2b3c",
"entityId": "3f9c1e0a-8b2d-4e6f-9a01-5c7d2b8e4f10",
"country": "US",
"type": "state_annual_report",
"period": "2026",
"frequency": "annual",
"deadline": "2026-06-01",
"status": "filed",
"amountDue": 300,
"currency": "USD",
"filedAt": "2026-05-20T16:03:00.000Z",
"jurisdictionLevel": "state",
"stateCode": "DE",
"authority": "Delaware Division of Corporations",
"formReference": null
}
]
}{
"error": "<string>",
"reason": "<string>"
}{
"error": "<string>",
"reason": "<string>"
}{
"error": "<string>",
"reason": "<string>"
}Obligations
The tax obligations calendar
Every confirmed tax/compliance obligation Cherry is tracking, deadline ascending: type, period, frequency, deadline, status, jurisdiction, authority, and form reference. Filter with status (comma-separated: upcoming, payment_pending, confirmed, filed) — e.g. status=upcoming for what’s due next — and from to drop past deadlines.
GET
/
obligations
The tax obligations calendar
curl --request GET \
--url https://api.trycherry.ai/v1/obligations \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.trycherry.ai/v1/obligations"
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/obligations', 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/obligations",
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/obligations"
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/obligations")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.trycherry.ai/v1/obligations")
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": "5e2f7a9b-1c3d-4e5f-8a6b-7c8d9e0f1a2b",
"entityId": "3f9c1e0a-8b2d-4e6f-9a01-5c7d2b8e4f10",
"country": "US",
"type": "federal_estimated_tax",
"period": "2026-Q3",
"frequency": "quarterly",
"deadline": "2026-09-15",
"status": "upcoming",
"amountDue": 6150,
"currency": "USD",
"filedAt": null,
"jurisdictionLevel": "federal",
"stateCode": null,
"authority": "IRS",
"formReference": "Form 1040-ES"
},
{
"id": "6f3a8b0c-2d4e-4f6a-9b7c-8d9e0f1a2b3c",
"entityId": "3f9c1e0a-8b2d-4e6f-9a01-5c7d2b8e4f10",
"country": "US",
"type": "state_annual_report",
"period": "2026",
"frequency": "annual",
"deadline": "2026-06-01",
"status": "filed",
"amountDue": 300,
"currency": "USD",
"filedAt": "2026-05-20T16:03:00.000Z",
"jurisdictionLevel": "state",
"stateCode": "DE",
"authority": "Delaware Division of Corporations",
"formReference": 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
Comma-separated status filter: upcoming, payment_pending, confirmed, filed.
Only obligations with deadline on/after this date.
Max rows, 1-500. Default 100.
Required range:
1 <= x <= 500Response
Obligations, deadline ascending
Show child attributes
Show child attributes
⌘I