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",
  "amount": "100.50",
  "token": "usdc",
  "chain": "ethereum",
  "fromAddress": "0xSender...",
  "txHash": "0xabc123...",
  "status": "completed",
  "createdAt": "2025-09-02T12:00:00Z",
  "completedAt": "2025-09-02T12:05: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>
amount
string | null

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

token
enum<string> | null

Deposited token. Currently usdc.

Available options:
usdc
chain
enum<string>

Chain where the deposit was detected.

Available options:
arbitrum,
base,
ethereum,
ethereum_sepolia,
polygon,
solana
fromAddress
string | null
txHash
string | null

On-chain transaction hash.

status
string | null

Deposit status.

createdAt
string<date-time>
completedAt
string<date-time> | null