Skip to main content
GET
/
v2
/
wallets
/
{id}
/
deposits
/
{depositId}
Get a single deposit
curl --request GET \
  --url https://sandbox.groundtech.co/v2/wallets/{id}/deposits/{depositId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "d1e2f3a4-0000-4000-8000-000000000001",
  "transactionHash": "0xabc123...",
  "chain": "ethereum",
  "token": "usdc",
  "fromAddress": "0xSender...",
  "toAddress": "0xDeposit...",
  "blockNumber": 19000001,
  "amount": "100.50",
  "createdAt": "2025-09-02T12:00:00Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Wallet ID

depositId
string<uuid>
required

Deposit ID

Response

Deposit details

id
string<uuid>
transactionHash
string | null
chain
string
token
string
fromAddress
string | null
toAddress
string | null
blockNumber
integer | null
amount
string | null

Deposit amount as a formatted string (e.g. "100.50").

createdAt
string<date-time>