---
title: "Get a recurring expense"
method: GET
path: "/expenses/recurring/{id}"
tags: ["Recurring Expenses"]
---

# Get a recurring expense

`GET /expenses/recurring/{id}`

Returns a specific recurring expense template

## Path parameters

- `id` integer, required

## Response `200`

Successful response

- RecurringExpense — Recurring expense template
  - `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

## Other responses

- `401` — Unauthenticated
- `403` — Forbidden
- `404` — Not found

---

[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)
