---
title: "Get inbound deposits"
method: GET
path: "/v2/users/{userId}/wallets/deposits"
tags: ["Wallet"]
---

# Get inbound deposits

`GET /v2/users/{userId}/wallets/deposits`

Get inbound deposits for a user's wallet

## Path parameters

- `userId` string, required

## Query parameters

- `chain` 'POLYGON' | 'ETHEREUM' | 'SOLANA' | 'BASE', required
- `currency` 'usdc' | 'usdt' | 'usdHifi', required
- `status` 'CONFIRMED' | 'COMPLETED'
- `createdAfter` string, date
- `createdBefore` string, date
- `limit` string
- `minAmount` number

## Response `200`

Success

- WalletDepositsObject
  - `count` integer
  - `deposits` WalletDepositObject[]
    - `id` string, uuid
    - `userId` string, uuid
    - `createdAt` string, date-time
    - `updatedAt` string, date-time
    - `wallet` object
      - `id` string, uuid
      - `address` string
      - `chain` 'POLYGON' | 'SOLANA' | 'ETHEREUM' | 'BASE'
      - `walletType` 'INDIVIDUAL'
    - `transaction` object
      - `transactionHash` string
      - `chain` 'POLYGON' | 'SOLANA' | 'ETHEREUM' | 'BASE'
      - `currency` string
      - `status` 'COMPLETED' | 'CONFIRMED'
      - `sourceAddress` string
      - `destinationAddress` string
      - `contractAddress` string
      - `amount` string
      - `unitAmount` string
  - `nextCursor` string — The `createdAt` timestamp of the last record in the current page. Pass this as `createdBefore` in the next request to retrieve the next page of results.

## Other responses

- `401` — Unauthorized
- `500` — Internal Server Error

---

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