Search documentation
Fuzzy search across every docs page and section
API referenceIdentity
Fuzzy search across every docs page and section
API referenceIdentity
API reference
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.
/v1/identity/getReturns 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.
access_tokenstringrequiredcurl https://api.feelconnect.dev/v1/identity/get \-H "Authorization: Bearer $FEELCONNECT_SECRET_KEY" \-H "Content-Type: application/json" \-d '{"access_token":"fc_at_…"}'
{"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"}]}