Skip to main content
GET
/
v2
/
wallets
/
{id}
/
deposits
/
lookup
Lookup a wallet deposit by tx hash
curl --request GET \
  --url https://sandbox.groundtech.co/v2/wallets/{id}/deposits/lookup \
  --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

Query Parameters

txHash
string
required

Transaction hash of the deposit (0x-prefixed hex for EVM chains).

chain
string

Optional chain identifier (e.g. arbitrum). If provided, the lookup is chain-scoped.

Response

Deposit found

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>