FeelConnect▍
ProductsDocsPricingChangelog
Sign inGet API keys

Search documentation

Fuzzy search across every docs page and section

API reference/Assets

Getting started

  • Overview
  • Quickstart
  • Authentication
  • Environments and sandbox
  • Link
  • Going live

API reference

  • Link tokens
  • Institutions
  • Items
  • Accounts
  • Transactions
  • Identity
  • Income
  • Assets
  • Investments
  • Liabilities
  • Recurring
  • Categories
  • AI products

Platform

  • Webhooks
  • Errors
  • Rate limits and quotas
  • SDKs
  • GraphQL
  • MCP and AI agents
  • Changelog
  1. Docs
  2. API reference
  3. Assets
PreviousIncomeNextInvestments

On this page

  • Get assets
FeelConnect▍

The developer-first financial data platform.

All systems operational

Products

Universal LinkData APIsAI enrichmentPricing

Developers

DocumentationAPI explorerDashboardGet API keys

Company

HomeChangelogfeels.moneySign in

Legal

PrivacyTermsSecurityData processing
© 2026 FeelConnect. All rights reserved./v1 · FC-Version 2026-07-01

API reference

Assets

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.

Get assets

POST/v1/assets/get

Returns 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.

Request body
access_tokenstringrequired
The item's access token.
curl https://api.feelconnect.dev/v1/assets/get \
-H "Authorization: Bearer $FEELCONNECT_SECRET_KEY" \
-H "Content-Type: application/json" \
-d '{"access_token":"fc_at_…"}'
Response
{
"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
}

Per-item scope

Totals cover this item only. To compute a user's full position across institutions, sum across their items in your own system.