v4

latestOpenAPI 3.0.12026-07-3189233676.2 KB
Liabilities

Retrieve liabilities

The endpoint returns liability accounts including credit cards and loans with detailed balance and payment information.

get/v1/links/{link_id}/liabilities/

Path parameters

link_idstring required

Link ID

Response

Example response

{
  "accounts": [
    {
      "id": "24d7e80942ce4ad58a93f70ce4115f5c",
      "created_at": "2022-05-04T11:30:00Z",
      "updated_at": "2022-05-04T12:00:00Z",
      "type": "CREDIT_CARD",
      "subtype": "AUTO",
      "mask": "6789",
      "nickname": "My account",
      "balances": {
        "currency_code": "USD",
        "balance": "100.00",
        "available_balance": "50.99",
        "credit_limit": "200.00"
      }
    }
  ],
  "liabilities": {
    "credit": [
      {
        "account_id": "68a7e80942ce4ad58a93f70ce411549a",
        "advances_apr": "29.24",
        "purchases_apr": "23.49",
        "available_cash": "92.00",
        "available_credit": "92.00",
        "balance_as_of": "2025-08-18T01:01:11Z",
        "credit_line": "2500.00",
        "current_balance": "2407.16",
        "last_payment_amount": "300.00",
        "last_payment_date": "2025-08-13",
        "last_stmt_balance": "1591.40",
        "last_stmt_date": "2025-08-01",
        "minimum_payment_amount": "0.00",
        "next_payment_amount": "0.00",
        "next_payment_date": "2025-08-23",
        "past_due_amount": "0.00"
      }
    ],
    "loans": [
      {
        "account_id": "24d7e80942ce4ad58a93f70ce4115f5c",
        "balance_as_of": "2025-08-18T01:01:11Z",
        "escrow_balance": "4611.98",
        "interest_paid_year_to_date": "2535.26",
        "interest_rate": "15.69",
        "interest_rate_as_of": "2025-08-18T01:01:11Z",
        "last_payment_amount": "850.44",
        "last_payment_date": "2025-08-16T05:49:04Z",
        "loan_term": 60,
        "maturity_date": "2028-10-17T04:00:00Z",
        "next_payment_amount": "850.44",
        "next_payment_date": "2025-08-17T04:00:00Z",
        "original_principal": "35000.00",
        "principal_balance": "25843.58"
      }
    ]
  }
}