curl --request GET \
--url https://api.rootfi.dev/v3/accounting/cash_flow_statement \
--header 'api_key: <api-key>'{
"data": [
{
"rootfi_id": 157,
"rootfi_deleted_at": null,
"rootfi_created_at": "2024-01-22T05:07:31.465Z",
"rootfi_updated_at": "2024-01-22T05:07:31.000Z",
"rootfi_company_id": 1089,
"platform_id": "123456_1",
"platform_unique_id": "123456",
"period_start": "2023-10-01",
"period_end": "2024-01-31",
"operating_activities": [
{
"name": "Operating Activities",
"value": 123456.12,
"line_items": [
{
"name": "Otis Falls",
"value": 123456.12,
"account_id": "123456",
"line_items": []
}
]
}
],
"investing_activities": [
{
"name": "Investing Activities",
"value": 123456.12,
"line_items": [
{
"name": "Otis Falls",
"value": 123456.12,
"account_id": "123456",
"line_items": []
}
]
}
],
"financing_activities": [
{
"name": "Financing Activities",
"value": 123456.12,
"line_items": [
{
"name": "Otis Falls",
"value": 123456.12,
"account_id": "123456",
"line_items": []
}
]
}
],
"cash_at_beginning_of_period": 123456,
"cash_at_end_of_period": 123456,
"updated_at": "2024-01-22T05:07:31.000Z"
}
],
"prev": "eyJyb290ZmlfaWQiOjQ0MDA2MX0=",
"next": "eyJyb291ZmlfaWQiOjQ0MDA2MX0=",
"total_count": 123
}Retrieve Cash Flow Statement from the database.
curl --request GET \
--url https://api.rootfi.dev/v3/accounting/cash_flow_statement \
--header 'api_key: <api-key>'{
"data": [
{
"rootfi_id": 157,
"rootfi_deleted_at": null,
"rootfi_created_at": "2024-01-22T05:07:31.465Z",
"rootfi_updated_at": "2024-01-22T05:07:31.000Z",
"rootfi_company_id": 1089,
"platform_id": "123456_1",
"platform_unique_id": "123456",
"period_start": "2023-10-01",
"period_end": "2024-01-31",
"operating_activities": [
{
"name": "Operating Activities",
"value": 123456.12,
"line_items": [
{
"name": "Otis Falls",
"value": 123456.12,
"account_id": "123456",
"line_items": []
}
]
}
],
"investing_activities": [
{
"name": "Investing Activities",
"value": 123456.12,
"line_items": [
{
"name": "Otis Falls",
"value": 123456.12,
"account_id": "123456",
"line_items": []
}
]
}
],
"financing_activities": [
{
"name": "Financing Activities",
"value": 123456.12,
"line_items": [
{
"name": "Otis Falls",
"value": 123456.12,
"account_id": "123456",
"line_items": []
}
]
}
],
"cash_at_beginning_of_period": 123456,
"cash_at_end_of_period": 123456,
"updated_at": "2024-01-22T05:07:31.000Z"
}
],
"prev": "eyJyb290ZmlfaWQiOjQ0MDA2MX0=",
"next": "eyJyb291ZmlfaWQiOjQ0MDA2MX0=",
"total_count": 123
}Filter by rootfi_updated_at Greater than or Equal To.
Filter by rootfi_company_id. You can filter by any field using this syntax field_name[operator]
Include deleted records. By default, deleted records are not included. Supported values are true and false
The period end date of the income statement
The period start date of the income statement
The period end date of the income statement
The period of the income statement
The response object for the Cash Flow Statement endpoint.