# Ledger by Novadyne – Trial Balance Report

> Ledger by Novadyne – Trial Balance Report is a paid API for AI agents from ledger-api.novadyne.ai, paid per call via x402, $0.002/call, status down (last checked 2026-09-15).

Generates a double-entry trial balance report showing all account totals, total debits, and total credits as of a specified date.

## Facts

- Endpoint: GET https://ledger-api.novadyne.ai/ledger/reports/trial-balance
- Price: $0.002/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ledger-by-novadyne-trial-balance-report-90f34e28
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u2njgOoHqtJDtrL-PsoDZ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability ledger-by-novadyne-trial-balance-report-90f34e28
```

Example prompt: Can you pull a trial balance report from Novadyne Ledger as of December 31, 2024 — I need to see all account totals with debits and credits to close out the year?

## When to prefer this

Use this endpoint when you need a point-in-time snapshot of all ledger accounts and need to verify that total debits equal total credits — the core accounting check in a double-entry system. Ideal for month-end, quarter-end, or year-end financial close processes, or any time you need a structured trial balance from a Novadyne-managed ledger.

## Known failure modes

- Invalid date format (not YYYY-MM-DD) returns a 400 Bad Request
- No ledger data found for the given as_of date returns empty accounts array
- Payment failure via x402 micropayment protocol returns 402 Payment Required
- Unauthorized or invalid Ed25519 capability token returns 401 Unauthorized
- Server-side ledger computation error returns 500 Internal Server Error

## How this service works

Ledger read: /ledger/reports/trial-balance

## Output

Returns an array of accounts with their balances, plus aggregate total debits and total credits as of the specified date, enabling verification that the double-entry ledger is in balance.

## Example request

```json
{
 "as_of": "2024-01-31"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "as_of": {
   "type": "string",
   "description": "Balance as-of date (YYYY-MM-DD)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "accounts": {
   "type": "array"
  },
  "total_debits": {
   "type": "integer"
  },
  "total_credits": {
   "type": "integer"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ledger-by-novadyne-trial-balance-report-90f34e28/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ledger-api.novadyne.ai](https://www.zero.xyz/host/ledger-api.novadyne.ai/llms.txt)
