GET api/account/{id}/balances?startDate={startDate}&endDate={endDate}

Get balance of an account Processes this account API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The unique identifier of the requested resource.

integer

Required

startDate

The start date value supplied with the request.

date

None.

endDate

The end date value supplied with the request.

date

None.

Body Parameters

None.

Response Information

Resource Description

The response returned after the operation completes.

AccountHistoryDataContract
NameDescriptionTypeAdditional information
StartDate

The start date, expressed as a date and time.

date

None.

EndDate

The end date, expressed as a date and time.

date

None.

Values

The collection of values.

Collection of AccountHistoryBalanceDataContract

None.

Id

The unique identifier of this resource.

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "StartDate": "2026-07-23T08:23:17.1241154Z",
  "EndDate": "2026-07-23T08:23:17.1241154Z",
  "Values": [
    {
      "DateTime": "2026-07-23T08:23:17.1241154Z",
      "Balance": 2.0,
      "ClearedBalance": 3.0,
      "UnclearedBalance": 0.0
    },
    {
      "DateTime": "2026-07-23T08:23:17.1241154Z",
      "Balance": 2.0,
      "ClearedBalance": 3.0,
      "UnclearedBalance": 0.0
    }
  ],
  "Id": 3
}