v1

latestOpenAPI 3.1.0AGPL-3.0 license2026-07-1210336283.6 KB
Reports

Expense reports

Expense reports for the authenticated team.

get/reports/expenses

Query parameters

fromstring required

Start date (ISO 8601 format)

Example:2023-01-01

Start date (ISO 8601 format)

tostring required

End date (ISO 8601 format)

Example:2023-12-31

End date (ISO 8601 format)

currencystring

Currency code (ISO 4217)

Example:USD

Currency code (ISO 4217)

Response

Expense reports for the authenticated team.

Example response

{
  "summary": {
    "averageExpense": 121054.86,
    "currency": "SEK"
  },
  "meta": {
    "type": "expense",
    "currency": "SEK"
  },
  "result": [
    {
      "date": "2024-01-01 00:00:00",
      "value": 637898.68,
      "currency": "SEK",
      "recurring": 9467.76,
      "total": 647366.44
    }
  ]
}