FeelConnect▍
ProductsDocsPricingChangelog
Sign inGet API keys

Search documentation

Fuzzy search across every docs page and section

API reference/Income

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. Income
PreviousIdentityNextAssets

On this page

  • Get income
  • Fields
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

Income

POST /v1/income/get — detected income streams with employer, cadence, and confidence.

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 income

POST/v1/income/get

Returns income streams detected from deposit activity: employer, pay cadence, average gross amount, and a confidence score. Requires the income product scope.

Request body
access_tokenstringrequired
The item's access token.
curl https://api.feelconnect.dev/v1/income/get \
-H "Authorization: Bearer $FEELCONNECT_SECRET_KEY" \
-H "Content-Type: application/json" \
-d '{"access_token":"fc_at_…"}'
Response
{
"income_streams": [
{
"income_id": "inc_2mV8xQkT4nB7wZ1cRj6f",
"employer_name": "Northwind Software",
"cadence": "biweekly",
"average_gross": 3184.62,
"last_date": "2026-07-17",
"confidence": 0.97
}
]
}

Fields

Income stream
income_idstring
Stable id, inc_….
employer_namestring
Detected payer, cleaned.
cadencestring
weekly | biweekly | monthly | irregular
average_grossnumber
Average deposit amount across the stream.
last_datestring
YYYY-MM-DD of the most recent deposit.
confidencenumber
0–1 likelihood that this stream is recurring income.