Skip to main content
GET
/
v2
/
wallets
/
{id}
/
deposits
/
lookup
Lookup a deposit by transaction hash
curl --request GET \
  --url https://sandbox.groundtech.co/v2/wallets/{id}/deposits/lookup \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "transactionHash": "<string>",
  "chain": "<string>",
  "token": "<string>",
  "status": "<string>",
  "fromAddress": "<string>",
  "toAddress": "<string>",
  "blockNumber": 123,
  "amount": 123,
  "createdAt": "2023-11-07T05:31:56Z",
  "completedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

API keys are prefixed ground_sandbox_ (sandbox) or ground_prod_ (production). Pass the key as a Bearer token in the Authorization header.

Path Parameters

id
string<uuid>
required

Portfolio 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
status
string | null
fromAddress
string | null
toAddress
string | null
blockNumber
number | null
amount
number | null

Deposit amount in token units (e.g. 1500.50 USDC).

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