Elly API
  1. Reports
Elly API
  • API Keys
    • Get current API key details
      GET
    • Get current API key usage statistics
      GET
    • List all API keys
      GET
    • Create a new API key
      POST
    • Revoke an API key
      DELETE
  • Transactions
    • List transactions
      GET
    • Create transaction
      POST
    • Get transaction details
      GET
    • Update transaction
      PATCH
    • Delete transaction
      DELETE
    • Bulk update transactions
      POST
  • Bank Accounts
    • List bank accounts
      GET
    • Create bank account
      POST
    • Get bank account details
      GET
    • Update bank account
      PATCH
    • Delete bank account
      DELETE
    • Get bank account transactions
      GET
  • Statements
    • List bank statements
      GET
    • Upload bank statement file
      POST
    • Get statement details
      GET
    • Get statement transactions
      GET
  • Categories
    • List categories
      GET
  • Reports
    • Cash flow report
      GET
    • Financial summary report
      GET
  • Companies
    • Get company details
  • Schemas
    • TransactionStatus
    • AccountingCategory
    • CashFlowCategory
    • AccountType
    • AccountStatus
    • StatementStatus
    • ApiScope
    • ApiKey
    • Transaction
    • TransactionListResponse
    • TransactionResponse
    • TransactionDetailResponse
    • CreateTransactionRequest
    • UpdateTransactionRequest
    • BulkUpdateRequest
    • BankAccount
    • BankAccountListResponse
    • CreateBankAccountRequest
    • UpdateBankAccountRequest
    • CreateStatementRequest
    • CreateStatementUpload
    • Pagination
    • Error
  1. Reports

Cash flow report

GET
/api-v1/reports/cash-flow
Reports
Generate a cash flow statement broken down by category.
The report follows standard cash flow statement structure:
Operations: Day-to-day business activities
Investments: Asset purchases/sales, investments
Financing: Loans, equity, dividends

Request

Authorization
API Key
Add parameter in header
X-API-Key
Example:
X-API-Key: ********************
or
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Query Params

Responses

🟢200
application/json
Cash flow report
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://gvazyknvkqdeuzmrnuwu.supabase.co/functions/v1/api-v1/reports/cash-flow?date_from=2025-01-01&date_to=2025-01-31&bank_account_id' \
--header 'X-API-Key: <api-key>'
Response Response Example
{
    "success": true,
    "data": {
        "period": {
            "from": "2025-01-01",
            "to": "2025-01-31"
        },
        "operations": {
            "inflows": 150000,
            "outflows": -85000,
            "net": 65000
        },
        "investments": {
            "inflows": 0,
            "outflows": -25000,
            "net": -25000
        },
        "financing": {
            "inflows": 100000,
            "outflows": -15000,
            "net": 85000
        },
        "net_cash_flow": 125000
    }
}
Modified at 2025-12-30 00:32:01
Previous
List categories
Next
Financial summary report
Built with