Search documentation
Fuzzy search across every docs page and section
API referenceAssets
Fuzzy search across every docs page and section
API referenceAssets
API reference
POST /v1/assets/get — an asset and liability snapshot with computed net worth.
All endpoints are POST with a JSON body, authenticated with your secret key (Authentication). Errors use the standard envelope; money is in major units with an iso_currency_code; dates are YYYY-MM-DD strings.
/v1/assets/getReturns every account with its balance plus rolled-up totals: assets (depository, investment and crypto balances), liabilities (credit and loan balances), and net worth. Account balances are the source of truth — an investment or crypto balance already includes the market value of that account's holdings, so breakdown.holdings is informational and is never added on top. Totals are stated in a single iso_currency_code; accounts denominated in anything else (including crypto wallets whose balance is an asset quantity) are left out — we don't apply FX rates. Requires the assets product scope. Useful for lending snapshots and net-worth features.
access_tokenstringrequiredcurl https://api.feelconnect.dev/v1/assets/get \-H "Authorization: Bearer $FEELCONNECT_SECRET_KEY" \-H "Content-Type: application/json" \-d '{"access_token":"fc_at_…"}'
{"accounts": [{"account_id": "acct_9hK2mQxP7cW1nR4tYb8s","name": "Everyday Checking","official_name": "Meridian Trust Everyday Checking","type": "depository","subtype": "checking","mask": "4821","balances": {"current": 4327.18,"available": 4212.03,"limit": null,"iso_currency_code": "USD"},"verification_status": "verified"},{"account_id": "acct_5tGb2VnM8kQ4wZ1xLp0d","name": "Cashback Card","official_name": "Meridian Trust Cashback Rewards Card","type": "credit","subtype": "credit_card","mask": "0093","balances": {"current": 1184.52,"available": 8815.48,"limit": 10000,"iso_currency_code": "USD"},"verification_status": "verified"}],"total_assets": 68412.77,"total_liabilities": 19301.4,"net_worth": 49111.37}