> ## Documentation Index
> Fetch the complete documentation index at: https://docs.daya.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve a deposit

> Get a specific deposit by ID

## Overview

Retrieve detailed information about a specific NGN or crypto deposit.

<Info>
  Use [Get USD virtual account deposit](/api-reference/virtual-account-deposits/get-usd-account-deposit) for payments into USD virtual accounts.
</Info>

## Authentication

<ParamField header="X-Api-Key" type="string" required>
  Your merchant API key
</ParamField>

## Path Parameters

<ParamField path="id" type="string" required>
  Deposit ID (UUID format).

  **Example:** `7a4e8400-e29b-41d4-a716-446655440000`
</ParamField>

## Request Examples

<CodeGroup>
  ```bash cURL theme={null}
  curl --request GET \
    --url https://api.daya.co/v1/deposits/7a4e8400-e29b-41d4-a716-446655440000 \
    --header 'X-Api-Key: YOUR_API_KEY'
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://api.daya.co/v1/deposits/7a4e8400-e29b-41d4-a716-446655440000',
    {
      headers: {
        'X-Api-Key': 'YOUR_API_KEY'
      }
    }
  );
  const deposit = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'https://api.daya.co/v1/deposits/7a4e8400-e29b-41d4-a716-446655440000',
      headers={'X-Api-Key': 'YOUR_API_KEY'}
  )
  deposit = response.json()
  ```
</CodeGroup>

## Response

Returns a deposit object. See [List deposits](/api-reference/deposits/list-deposits#response) for the full field list.

<Info>
  If a developer fee was configured for the funding account, the deposit object includes `developer_fee` and `customer_amount`. Use `developer_fee` to see the amount and currency kept by your merchant account, and use `customer_amount` to see the final amount left for the customer.
</Info>

### Success Response

<ResponseExample>
  ```json 200 OK - NGN Deposit (Completed) theme={null}
  {
    "id": "7a4e8400-e29b-41d4-a716-446655440000",
    "type": "NGN_DEPOSIT",
    "funding_account_id": "6b0e8400-e29b-41d4-a716-446655440000",
    "onramp_id": "550e8400-e29b-41d4-a716-446655440000",
    "customer_id": "650e8400-e29b-41d4-a716-446655440000",
    "amount": "15000.00",
    "currency": "NGN",
    "settled_amount": "9.70",
    "settled_currency": "USDC",
    "rate": "1545.50",
    "rate_id": "rate_8x7k2mq9p",
    "status": "COMPLETED",
    "settlement_status": "COMPLETED",
    "settlement_mode": "ONCHAIN",
    "chain": "BASE",
    "tx_hash": "0x8f3e2d1c0b9a8e7f6d5c4b3a2e1f0d9c8b7a6e5f4d3c2b1a",
    "fees": {
      "deposit_fee": { "amount": "0.05", "currency": "USD" },
      "total_fee_usd": "0.05"
    },
    "developer_fee": {
      "percentage": "2.5",
      "amount": "0.25",
      "currency": "USD"
    },
    "customer_amount": {
      "amount": "9.45",
      "currency": "USDC"
    },
    "created_at": "2026-01-14T15:06:30Z",
    "updated_at": "2026-01-14T15:08:15Z"
  }
  ```

  ```json 200 OK - Crypto Deposit (Completed) theme={null}
  {
    "id": "8b4e8400-e29b-41d4-a716-446655440000",
    "type": "CRYPTO_DEPOSIT",
    "funding_account_id": "6b0e8400-e29b-41d4-a716-446655440002",
    "offramp_id": "550e8400-e29b-41d4-a716-446655440000",
    "customer_id": "650e8400-e29b-41d4-a716-446655440000",
    "amount": "1.00",
    "currency": "USDC",
    "settled_amount": "1.00",
    "settled_currency": "USD",
    "status": "COMPLETED",
    "settlement_status": "COMPLETED",
    "settlement_mode": "INTERNAL_BALANCE",
    "asset": "USDC",
    "chain": "ETHEREUM",
    "tx_hash": "0xa1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4",
    "fees": {
      "total_fee_usd": "0.01"
    },
    "developer_fee": {
      "percentage": "2.5",
      "amount": "0.02",
      "currency": "USD"
    },
    "customer_amount": {
      "amount": "0.97",
      "currency": "USD"
    },
    "created_at": "2026-01-14T16:00:00Z",
    "updated_at": "2026-01-14T16:02:30Z"
  }
  ```

  ```json 200 OK - Requires Review theme={null}
  {
    "id": "7a4e8400-e29b-41d4-a716-446655440001",
    "type": "NGN_DEPOSIT",
    "funding_account_id": "6b0e8400-e29b-41d4-a716-446655440000",
    "onramp_id": "550e8400-e29b-41d4-a716-446655440000",
    "customer_id": "650e8400-e29b-41d4-a716-446655440000",
    "amount": "15000.00",
    "currency": "NGN",
    "status": "REQUIRES_REVIEW",
    "settlement_status": "REQUIRES_REVIEW",
    "flag_code": "late_deposit",
    "flag_message": "Deposit received after onramp expiry",
    "created_at": "2026-01-14T15:35:00Z",
    "updated_at": "2026-01-14T15:35:05Z"
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "error": {
      "code": "NOT_FOUND",
      "message": "Deposit not found",
      "request_id": "550e8400-e29b-41d4-a716-446655440000"
    }
  }
  ```
</ResponseExample>
