GET
/
accounts
/
{acc_id}
/
balances
curl "https://production.methodfi.com/acc_yVf3mkzbhz9tj/balances" \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "data": [
    {
      "id": "bal_ebzh8KaR9HCBG",
      "account_id": "acc_mBxKxAEUmVd6X",
      "status": "completed",
      "amount": 30000,
      "error": null,
      "created_at": "2024-03-28T15:25:44.763Z",
      "updated_at": "2024-03-28T15:26:04.082Z"
    },
    {...}
  ]
}

Retrieve a list of Balances requests for a specific Account.

Path Parameters

acc_id
string
required

ID of the Account.

Query Parameters

from_date
string

ISO 8601 formatted date (YYYY-MM-DD) to filter for Balances created on and after the date provided.

to_date
string

ISO 8601 formatted date (YYYY-MM-DD) to filter for Balances created on and before the date provided.

page
string

The number of the page to return.

page_cursor
string

The ID of a resource from which a page should start or end. Mutually exclusive with page.

page_limit
string

The number of Balances to return per page.

Returns

Returns a list of Balances.

curl "https://production.methodfi.com/acc_yVf3mkzbhz9tj/balances" \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "data": [
    {
      "id": "bal_ebzh8KaR9HCBG",
      "account_id": "acc_mBxKxAEUmVd6X",
      "status": "completed",
      "amount": 30000,
      "error": null,
      "created_at": "2024-03-28T15:25:44.763Z",
      "updated_at": "2024-03-28T15:26:04.082Z"
    },
    {...}
  ]
}