---
title: "Fetch project expense item"
method: GET
path: "/projects/{project_id}/expense_items/{expense_item_id}"
tags: ["expense items"]
---

# Fetch project expense item

`GET /projects/{project_id}/expense_items/{expense_item_id}`

Retrieves a single expense item by its ID.

## Path parameters

- `project_id` integer, required
- `expense_item_id` integer, required

## Response `200`

The requested expense item object.

- ExpenseItem
  - `expense_item_id` integer — Unique identifier for the expense item.
  - `assignable_id` integer, required — ID of the item being assigned.
  - `assignable_type` 'Project' | 'LeaveType' | 'Phase' — The type of the assignable item.
  - `user_id` integer, required — ID of the user to whom the item is assigned.
  - `amount` number, float, required — The assigned amount.
  - `date` string, date, required — The date of the expense item.
  - `category` string, nullable — The category of the expense item. Can be null.
  - `notes` string, nullable — Additional notes for the expense item.
  - `created_at` string, date-time — Timestamp when the expense item was created.
  - `updated_at` string, date-time — Timestamp when the expense item was last updated.

## Other responses

- `404` — The expense item was not found.

---

[API](https://skmtc.dev/smartsheet/apis/resource-management-openapi-reference.md) · [All operations](https://skmtc.dev/smartsheet/apis/resource-management-openapi-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/smartsheet/resource-management-openapi-reference/revisions/e4c439ac13f2/schema)
