curl --request GET \
--url https://prod.truv.com/v1/links/{link_id}/liabilities/ \
--header 'X-Access-Client-Id: <api-key>' \
--header 'X-Access-Secret: <api-key>'{
"accounts": [
{
"type": "CREDIT_CARD",
"subtype": "AUTO",
"mask": "6789",
"balances": {
"currency_code": "USD",
"balance": "100.00",
"available_balance": "50.99",
"credit_limit": "200.00"
},
"id": "24d7e80942ce4ad58a93f70ce4115f5c",
"created_at": "2022-05-04T11:30:00.000Z",
"updated_at": "2022-05-04T12:00:00.000Z",
"nickname": "My account"
}
],
"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"
}
]
}
}The endpoint returns liability accounts including credit cards and loans with detailed balance and payment information.
curl --request GET \
--url https://prod.truv.com/v1/links/{link_id}/liabilities/ \
--header 'X-Access-Client-Id: <api-key>' \
--header 'X-Access-Secret: <api-key>'{
"accounts": [
{
"type": "CREDIT_CARD",
"subtype": "AUTO",
"mask": "6789",
"balances": {
"currency_code": "USD",
"balance": "100.00",
"available_balance": "50.99",
"credit_limit": "200.00"
},
"id": "24d7e80942ce4ad58a93f70ce4115f5c",
"created_at": "2022-05-04T11:30:00.000Z",
"updated_at": "2022-05-04T12:00:00.000Z",
"nickname": "My account"
}
],
"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"
}
]
}
}Documentation Index
Fetch the complete documentation index at: https://truv.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Was this page helpful?