For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
Resources
Log inGet a demo
Get startedAPI referenceImplementation
Get startedAPI referenceImplementation
    • Overview
          • The IncomeStatement object
          • GET/income-statements
          • GET/income-statements/{id}

Get started

  • Overview
  • Introduction
  • Unified API
  • Linked Account
  • Merge Link
  • Use cases

Implementation

  • Sandboxes
  • SDKs
  • API access
  • Syncing data
  • Writing data
  • Data minimization
  • Supplemental data
  • Errors
  • Integration metadata

API reference

  • ATS
  • HRIS
  • Accounting
  • Ticketing
  • CRM
  • File Storage
  • Knowledge Base
  • Chat

Resources

  • Help Center
  • Merge.dev
  • Changelog
© Merge 2026Terms of usePrivacy policy
UnifiedAgent HandlerGateway
UnifiedAgent HandlerGateway
Resources
Log inGet a demo
Common ModelsIncome Statements

The IncomeStatement object

The IncomeStatement Object
1{
2 "id": "string",
3 "remote_id": "string",
4 "created_at": "2023-01-01T00:00:00Z",
5 "modified_at": "2023-01-01T00:00:00Z",
6 "name": "string",
7 "currency": "XUA",
8 "company": "string",
9 "start_period": "2023-01-01T00:00:00Z",
10 "end_period": "2023-01-01T00:00:00Z",
11 "income": [
12 {
13 "remote_id": "string",
14 "created_at": "2023-01-01T00:00:00Z",
15 "modified_at": "2023-01-01T00:00:00Z",
16 "name": "string",
17 "value": 1,
18 "sub_items": {
19 "string": {}
20 },
21 "company": "string",
22 "remote_was_deleted": true
23 }
24 ],
25 "cost_of_sales": [
26 {
27 "remote_id": "string",
28 "created_at": "2023-01-01T00:00:00Z",
29 "modified_at": "2023-01-01T00:00:00Z",
30 "name": "string",
31 "value": 1,
32 "sub_items": {
33 "string": {}
34 },
35 "company": "string",
36 "remote_was_deleted": true
37 }
38 ],
39 "gross_profit": 1,
40 "operating_expenses": [
41 {
42 "remote_id": "string",
43 "created_at": "2023-01-01T00:00:00Z",
44 "modified_at": "2023-01-01T00:00:00Z",
45 "name": "string",
46 "value": 1,
47 "sub_items": {
48 "string": {}
49 },
50 "company": "string",
51 "remote_was_deleted": true
52 }
53 ],
54 "net_operating_income": 1,
55 "non_operating_expenses": [
56 {
57 "remote_id": "string",
58 "created_at": "2023-01-01T00:00:00Z",
59 "modified_at": "2023-01-01T00:00:00Z",
60 "name": "string",
61 "value": 1,
62 "sub_items": {
63 "string": {}
64 },
65 "company": "string",
66 "remote_was_deleted": true
67 }
68 ],
69 "net_income": 1,
70 "remote_was_deleted": true,
71 "field_mappings": {
72 "organization_defined_targets": {
73 "string": {}
74 },
75 "linked_account_defined_targets": {
76 "string": {}
77 }
78 },
79 "remote_data": [
80 {
81 "path": "string",
82 "data": {}
83 }
84 ]
85}
Was this page helpful?
Previous

/expenses/bulk/{batch_id}

Next

/income-statements

The IncomeStatement object is used to represent a company’s income, the cost of sales, operating expenses, and other non-operating expenses. The object also includes other important values like gross profit, gross operating profit, and net income. This represents a period of time (month, quarter, or year).

idstringOptionalRead-onlyformat: "uuid"
remote_idstring or nullOptional
created_atdatetimeOptionalRead-only
The datetime that this object was created by Merge.
modified_atdatetimeOptionalRead-only
The datetime that this object was modified by Merge.
namestring or nullOptional
The income statement's name.
currencyenum or nullOptional
The income statement's currency. The currency code in ISO 4217 format.
companystring or nullOptionalformat: "uuid"
The company the income statement belongs to.
start_perioddatetime or nullOptional
The income statement's start period.
end_perioddatetime or nullOptional
The income statement's end period.
incomelist of objectsOptionalRead-only
cost_of_saleslist of objectsOptionalRead-only
gross_profitdouble or nullOptional
The revenue minus the cost of sale.
operating_expenseslist of objectsOptionalRead-only
net_operating_incomedouble or nullOptional
The revenue minus the operating expenses.
non_operating_expenseslist of objectsOptionalRead-only
net_incomedouble or nullOptional
The gross profit minus the total expenses.
remote_was_deletedbooleanOptionalRead-only
field_mappingsobject or nullOptionalRead-only
remote_datalist of objects or nullOptionalRead-only