Getting the Report Data
When the report is ready, you can get the report in json format by hitting the following endpoint.
Get Report JSON Data
Path Parameters
Name
Type
Description
{
"total_net_income": 280000,
"two_month_avg_monthly_net_income": 35000,
"three_month_avg_monthly_net_income": 35000,
"six_month_avg_monthly_net_income": 35000,
"nine_month_avg_monthly_net_income": null,
"twelve_month_avg_monthly_net_income": null,
"total_non_recurring_deposits": 60340,
"summary_timespan_length": 239,
"bank_connections": [
{
"accounts": [
{
"name": "Dag Credit Card",
"type": "Credit",
"available_balance": null,
"current_balance": null
},
{
"name": "Saving Plus",
"type": "Savings",
"available_balance": 10500,
"current_balance": 30500
},
{
"name": "Checking Account",
"type": "Checking",
"available_balance": 150000,
"current_balance": 160000
}
],
"income": {
"total_net_income": 420000,
"two_month_avg_monthly_net_income": 35000,
"three_month_avg_monthly_net_income": 35000,
"six_month_avg_monthly_net_income": 35000,
"nine_month_avg_monthly_net_income": 35000,
"twelve_month_avg_monthly_net_income": null,
"total_non_recurring_deposits": 35000,
"income_streams": [
{
"name": "The Closing Docs Payroll",
"transactions": [
{
"amount": 35000,
"name": "The Closing Docs Payroll",
"date": "04/01/2020"
},
{
"amount": 35000,
"name": "The Closing Docs Payroll",
"date": "03/01/2020"
},
{
"amount": 35000,
"name": "The Closing Docs Payroll",
"date": "02/01/2020"
},
{
"amount": 35000,
"name": "The Closing Docs Payroll",
"date": "01/01/2020"
},
{
"amount": 35000,
"name": "The Closing Docs Payroll",
"date": "12/01/2019"
},
{
"amount": 35000,
"name": "The Closing Docs Payroll",
"date": "11/01/2019"
},
{
"amount": 35000,
"name": "The Closing Docs Payroll",
"date": "10/01/2019"
},
{
"amount": 35000,
"name": "The Closing Docs Payroll",
"date": "09/01/2019"
},
{
"amount": 35000,
"name": "The Closing Docs Payroll",
"date": "08/01/2019"
},
{
"amount": 35000,
"name": "The Closing Docs Payroll",
"date": "07/01/2019"
},
{
"amount": 35000,
"name": "The Closing Docs Payroll",
"date": "06/01/2019"
},
{
"amount": 35000,
"name": "The Closing Docs Payroll",
"date": "05/01/2019"
}
],
"monthly_income": 34375,
"start_date": "05/01/2019",
"end_date": "04/01/2020"
}
],
"non_recurring_deposit_streams": [
{
"name": "The Closing Docs Irregular Income",
"transactions": [
{
"amount": 35000,
"name": "The Closing Docs Irregular Income",
"date": "04/01/2020"
}
]
}
],
"start_date": "05/01/2019",
"end_date": "04/01/2020",
"transaction_timespan_length": 336
},
"institution_name": "Chase"
},
{
"accounts": [
{
"name": "Checking",
"type": "Checking",
"available_balance": 100000,
"current_balance": 100000
},
{
"name": "Credit Card",
"type": "Credit Card",
"available_balance": 100000,
"current_balance": 100000
},
{
"name": "Loan",
"type": "Loan",
"available_balance": 100000,
"current_balance": 100000
},
{
"name": "Savings",
"type": "Savings",
"available_balance": 100000,
"current_balance": 100000
}
],
"income": {
"total_net_income": 0,
"two_month_avg_monthly_net_income": 0,
"three_month_avg_monthly_net_income": 0,
"six_month_avg_monthly_net_income": 0,
"nine_month_avg_monthly_net_income": null,
"twelve_month_avg_monthly_net_income": null,
"total_non_recurring_deposits": 25340,
"income_streams": [],
"non_recurring_deposit_streams": [
{
"name": "Paycheck",
"transactions": [
{
"amount": 5208,
"name": "Paycheck",
"date": "02/09/2020"
},
{
"amount": 6505,
"name": "Paycheck",
"date": "02/01/2020"
},
{
"amount": 6547,
"name": "Paycheck",
"date": "01/05/2020"
},
{
"amount": 7080,
"name": "Paycheck",
"date": "12/31/2019"
}
]
}
],
"start_date": "08/14/2019",
"end_date": "04/09/2020",
"transaction_timespan_length": 239
},
"institution_name": "Wells Fargo"
}
],
"identity": {
"full_name": "Bob Smith",
"email": "[email protected]"
},
"income_explanation": "This is an income explanation",
"reason_completed": "finished",
"created_at": "04/10/2020"
}Response Schema
IndividualReport Schema
IncomeData Schema
Identity Schema
BankConnection Schema
IncomeSummary Schema
IncomeStream Schema
Transaction Schema
Account Schema
Sample IndividualReport response
Combined Report JSON Data
CombinedReport Schema
Income Criteria
IncomeCriteriaResult Schema
IncomeCriteria categories
Sample Income Criteria results section
Last updated