FeelConnect▍
ProductsDocsPricingChangelog
Sign inGet API keys

Search documentation

Fuzzy search across every docs page and section

API reference/Identity

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. Identity
PreviousTransactionsNextIncome

On this page

  • Get identity
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

Identity

POST /v1/identity/get — account-holder names, emails, phones, and addresses on file.

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 identity

POST/v1/identity/get

Returns the identity records the institution holds for the item's owner. Requires the identity product in the item's consented scopes. Use it for KYC pre-fill and account-ownership checks.

Request body
access_tokenstringrequired
The item's access token.
curl https://api.feelconnect.dev/v1/identity/get \
-H "Authorization: Bearer $FEELCONNECT_SECRET_KEY" \
-H "Content-Type: application/json" \
-d '{"access_token":"fc_at_…"}'
Response
{
"identity": {
"names": [
"Jordan A. Rivers"
],
"emails": [
"jordan.rivers@example.com"
],
"phones": [
"+1 206 555 0148"
],
"addresses": [
{
"street": "1418 Alder Way",
"city": "Seattle",
"region": "WA",
"postal_code": "98101",
"country": "US",
"primary": true
}
]
},
"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"
}
]
}

Handle with care

Identity data is personal data. Request the identity product only when you need it, minimize retention, and disclose the use in your privacy policy.