Kontur.Elba
Access income data, counterparties, and invoices via Kontur.Elba accounting service API
ko
Kontur.Elba is a popular Russian cloud accounting service for individual entrepreneurs (ИП) and small businesses. Its API provides access to income records, counterparty directories, and invoices.
With the Kontur.Elba integration in AACFlow, you can:
- Get income: Retrieve income records for the accounting period
- List counterparties: Enumerate all counterparties in the account
- Get invoices: List invoices filtered by status (draft, sent, paid, overdue)
This integration enables automated accounting data synchronization and reporting for Russian small business workflows.
Usage Instructions
Integrate Kontur.Elba into the workflow. Requires a Kontur.Elba API key from your account settings. Obtain it via the Kontur developer portal at developer.kontur.ru.
Tools
kontur_elba_get_income
Retrieve income records
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
apiKey | string | Yes | Kontur.Elba API key |
dateFrom | string | No | Start date filter (YYYY-MM-DD) |
dateTo | string | No | End date filter (YYYY-MM-DD) |
Output
| Parameter | Type | Description |
|---|---|---|
income | array | Array of income record objects |
total | number | Total income amount |
kontur_elba_list_counterparties
List all counterparties
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
apiKey | string | Yes | Kontur.Elba API key |
Output
| Parameter | Type | Description |
|---|---|---|
counterparties | array | Array of counterparty objects |
kontur_elba_get_invoices
Get invoices by status
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
apiKey | string | Yes | Kontur.Elba API key |
status | string | No | Filter by status: draft, sent, paid, overdue |
Output
| Parameter | Type | Description |
|---|---|---|
invoices | array | Array of invoice objects |
total | number | Total invoices count |
Links
- Official API: https://developer.kontur.ru/doc/elba
- AACFlow block source: apps/aacflow/blocks/blocks/kontur_elba.ts

