---
title: "Fetch a deposit."
method: GET
path: "/v2/deposits/{id}"
tags: ["Deposits"]
---

# Fetch a deposit.

`GET /v2/deposits/{id}`

## Path parameters

- `id` integer, required

## Response `200`

A model representing the deposit.

- DepositViewModel
  - `id` integer — The ID of this record.
  - `adjustments` DepositAdjustmentViewModel[] — Associated adjustments.
    - `amount` number — The adjustment amount.
    - `description` string — The adjustment description.
  - `deposited_utc` string, date-time — The timestamp this deposit occurred.
  - `external_deposit_number` string — The third-party identifier, if it exists.
  - `external_status` 'pending' | 'in_transit' | 'paid' | 'canceled' | 'failed'
  - `fees` FeePartialViewModel[] — Associated fees.
    - `id` integer — The ID of this record.
    - `amount` number — The fee amount.
    - `booking_id` integer — The id of the booking the fee is for.
  - `processing_status` 'recorded' | 'imported' | 'pending' | 'failed' | 'pending_resolutions'
  - `processor` 'manual' | 'airbnb' | 'lynnbrook_group' | 'stripe'
  - `total_adjustments` number — Total adjustments amount.
  - `total_deposited` number — Total deposited amount (the final net).
  - `total_fees` number — Total fees amount.
  - `total_transactions` number — Total transactions amount.
  - `transactions` DepositTransactionPartialViewModel[] — Associated payments, refunds, and security deposits.
    - `id` integer — The ID of this record.
    - `amount` number — The transaction amount.
    - `booking_id` integer — The id of the booking the transaction is for.
    - `type` 'payment' | 'refund' | 'security_deposit'

---

[API](https://skmtc.net/ownerrez/apis/ownerrez-api.md) · [All operations](https://skmtc.net/ownerrez/apis/ownerrez-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ownerrez/ownerrez-api/revisions/2c65f8afd8b2/schema)
