Skip to main content
GET
/
reports
/
trial-balance
Trial balance
curl --request GET \
  --url https://api.arcuserp.com/v1/reports/trial-balance \
  --header 'Authorization: Bearer <token>'
{
  "as_of_date": "2023-12-25",
  "total_debits": 123,
  "total_credits": 123,
  "is_balanced": true,
  "accounts": [
    {
      "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "account_number": "<string>",
      "account_name": "<string>",
      "account_type": "<string>",
      "debit_balance": 123,
      "credit_balance": 123,
      "net_balance": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.arcuserp.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key issued per entity via Settings > Developers > API Keys. Each key carries scopes (e.g. orders:read, products:write). Bearer token format: Authorization: Bearer ark_live_ent_Test keys use ark_test_ent_. Both are issued per entity
via Settings > Developers > API Keys.

Query Parameters

period_id
string<uuid>
as_of_date
string<date>
include_zero_balances
boolean
default:false

Response

Trial balance

as_of_date
string<date>
total_debits
number
total_credits
number
is_balanced
boolean
accounts
object[]