Skip to main content
GET
/
reports
/
abr
Aged Balance Report
curl --request GET \
  --url https://api.montereyfinancial.app/reports/abr \
  --header 'Authorization: Bearer <token>'
{
  "rows": [
    {
      "account_id": "<string>",
      "organization_id": "<string>",
      "contract_id": "<string>",
      "external_account_number": 123,
      "status_code": "<string>",
      "current_balance_cents": 123,
      "past_due_amount_cents": 123,
      "payoff_amount_cents": 123,
      "last_payment_at": "<string>"
    }
  ],
  "page": {
    "has_more": true,
    "limit": 123,
    "next_cursor": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.montereyfinancial.dev/llms.txt

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

Authorizations

Authorization
string
header
required

Static API key issued via the client portal. Treat it like a password.

Query Parameters

organization_id
string | null
cursor
string | null

Opaque pagination cursor from a previous response's page.next_cursor. Omit on the first page.

limit
integer | null

Page size for cursor pagination. Default 100, minimum 1, maximum 500. Requests above the maximum return 422 — narrow your page size and use the returned next_cursor to walk additional pages.

Required range: 1 <= x <= 500

Response

Successful Response

rows
PortfolioRow · object[]
required
page
PageMeta · object
required