---
title: "List recurring expenses"
method: GET
path: "/expenses/recurring"
tags: ["Recurring Expenses"]
---

# List recurring expenses

`GET /expenses/recurring`

Returns a list of recurring expense templates

## Query parameters

- `sort` 'document_id' | 'vendor' | 'amount' | 'frequency'
- `direction` 'asc' | 'desc'

## Response `200`

Successful response

- object
  - `data` RecurringExpense[]
    - `id` integer
    - `team_id` integer
    - `document_id` string
    - `vendor` string
    - `description` string, nullable
    - `amount` number
    - `frequency` 'weekly' | 'monthly' | 'quarterly' | 'yearly'
    - `start_date` string, date, nullable
    - `end_date` string, date, nullable
    - `next_expense_date` string, date, nullable
    - `status` 'unbilled' | 'billed'
    - `client` object, nullable
      - `id` integer
      - `name` string
    - `project` object, nullable
      - `id` integer
      - `name` string
    - `category` object, nullable
      - `id` integer
      - `name` string
  - `meta` object
    - `statistics` object
      - `average_active_monthly` number
      - `average_active_yearly` number

## Other responses

- `401` — Unauthenticated

---

[API](https://skmtc.net/harpoonapp/apis/harpoon-api-documentation.md) · [All operations](https://skmtc.net/harpoonapp/apis/harpoon-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/harpoonapp/harpoon-api-documentation/versions/e8fd192f94c6/schema)
