Elly API
  1. Categories
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. Categories

List categories

GET
/api-v1/categories
Categories
Retrieve all unique categories used in transactions.
Categories are automatically derived from transactions and cannot be created directly.
To add a new category, create or update a transaction with the desired category name.

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

Responses

🟢200
application/json
List of categories derived from transactions
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://gvazyknvkqdeuzmrnuwu.supabase.co/functions/v1/api-v1/categories' \
--header 'X-API-Key: <api-key>'
Response Response Example
{
    "success": true,
    "data": [
        {
            "name": "Office Supplies",
            "default_accounting_category": "Administrative Expenses",
            "default_cash_flow_category": "operations"
        },
        {
            "name": "Software Subscriptions",
            "default_accounting_category": "Technology Tools Expenses",
            "default_cash_flow_category": "operations"
        },
        {
            "name": "Payroll",
            "default_accounting_category": "Administrative Expenses",
            "default_cash_flow_category": "operations"
        },
        {
            "name": "Sales",
            "default_accounting_category": "Net Sales",
            "default_cash_flow_category": "operations"
        }
    ]
}
Modified at 2025-12-30 00:32:01
Previous
Get statement transactions
Next
Cash flow report
Built with