Skip to main content
GET
/
v1
/
platform
/
businesses
/
{business_id}
/
reports
/
balance-sheet
Get balance sheet report
curl --request GET \
  --url https://sandbox.thredfi.com/v1/platform/businesses/{business_id}/reports/balance-sheet/ \
  --header 'Authorization: Bearer <token>'
[
  {
    "business_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "as_of_date": "2023-12-25",
    "currency": "<string>",
    "detail_level": "summary",
    "summary": {
      "total_assets_cents": 123,
      "total_non_current_assets_cents": 123,
      "total_current_assets_cents": 123,
      "total_liabilities_cents": 123,
      "total_current_liabilities_cents": 123,
      "total_non_current_liabilities_cents": 123,
      "total_equity_cents": 123,
      "net_assets_cents": 123
    },
    "non_current_assets": {
      "display_name": "<string>",
      "total_cents": 123,
      "line_items": [
        {
          "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "account_code": "<string>",
          "account_name": "<string>",
          "value_cents": 123
        }
      ]
    },
    "current_assets": {
      "display_name": "<string>",
      "total_cents": 123,
      "line_items": [
        {
          "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "account_code": "<string>",
          "account_name": "<string>",
          "value_cents": 123
        }
      ]
    },
    "current_liabilities": {
      "display_name": "<string>",
      "total_cents": 123,
      "line_items": [
        {
          "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "account_code": "<string>",
          "account_name": "<string>",
          "value_cents": 123
        }
      ]
    },
    "non_current_liabilities": {
      "display_name": "<string>",
      "total_cents": 123,
      "line_items": [
        {
          "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "account_code": "<string>",
          "account_name": "<string>",
          "value_cents": 123
        }
      ]
    },
    "share_capital": {
      "display_name": "<string>",
      "total_cents": 123,
      "line_items": [
        {
          "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "account_code": "<string>",
          "account_name": "<string>",
          "value_cents": 123
        }
      ]
    },
    "share_premium": {
      "display_name": "<string>",
      "total_cents": 123,
      "line_items": [
        {
          "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "account_code": "<string>",
          "account_name": "<string>",
          "value_cents": 123
        }
      ]
    },
    "reserves": {
      "display_name": "<string>",
      "total_cents": 123,
      "line_items": [
        {
          "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "account_code": "<string>",
          "account_name": "<string>",
          "value_cents": 123
        }
      ]
    },
    "retained_earnings": {
      "display_name": "<string>",
      "total_cents": 123,
      "line_items": [
        {
          "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "account_code": "<string>",
          "account_name": "<string>",
          "value_cents": 123
        }
      ]
    }
  }
]

Authorizations

Authorization
string
header
required

Partner-level JWT token (unscoped). Token payload includes partner_id. Business access is validated via partner ownership. Format: Bearer <your-jwt-token>

Use this for: Multi-business operations where the business_id is specified in the URL and partner has access to multiple businesses.

Path Parameters

business_id
string<uuid>
required

Business UUID

Query Parameters

as_of_date
string<date>
required

Balance sheet date - point in time (YYYY-MM-DD)

detail_level
enum<string>
default:summary

Level of detail: 'summary' or 'detailed'

Available options:
detailed,
summary

Response

business_id
string<uuid>
required

Business UUID

as_of_date
string<date>
required

Balance sheet date (point in time)

currency
string
required

Business base currency

detail_level
enum<string>
required

'summary' or 'detailed'

  • summary - summary
  • detailed - detailed
Available options:
summary,
detailed
summary
object
required

Calculated Balance Sheet totals

non_current_assets
object

Grouped accounts by AccountSubtype.

  • display_name: From AccountSubtype.label
  • total_cents: Sum of all line items
  • line_items: Individual accounts with this subtype
current_assets
object

Grouped accounts by AccountSubtype.

  • display_name: From AccountSubtype.label
  • total_cents: Sum of all line items
  • line_items: Individual accounts with this subtype
current_liabilities
object

Grouped accounts by AccountSubtype.

  • display_name: From AccountSubtype.label
  • total_cents: Sum of all line items
  • line_items: Individual accounts with this subtype
non_current_liabilities
object

Grouped accounts by AccountSubtype.

  • display_name: From AccountSubtype.label
  • total_cents: Sum of all line items
  • line_items: Individual accounts with this subtype
share_capital
object

Grouped accounts by AccountSubtype.

  • display_name: From AccountSubtype.label
  • total_cents: Sum of all line items
  • line_items: Individual accounts with this subtype
share_premium
object

Grouped accounts by AccountSubtype.

  • display_name: From AccountSubtype.label
  • total_cents: Sum of all line items
  • line_items: Individual accounts with this subtype
reserves
object

Grouped accounts by AccountSubtype.

  • display_name: From AccountSubtype.label
  • total_cents: Sum of all line items
  • line_items: Individual accounts with this subtype
retained_earnings
object

Grouped accounts by AccountSubtype.

  • display_name: From AccountSubtype.label
  • total_cents: Sum of all line items
  • line_items: Individual accounts with this subtype