Skip to main content
GET
/
v2
/
wallets
/
{id}
/
deposits
List wallet deposits
curl --request GET \
  --url https://sandbox.groundtech.co/v2/wallets/{id}/deposits \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "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"
    }
  ],
  "nextCursor": null
}

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

cursor
string

Opaque cursor from a prior response; pass it unchanged to fetch the next page (must be reused with the same filters and sort).

limit
integer
default:50

Maximum number of deposits to return in this response (smaller values reduce payload size and latency).

Required range: 1 <= x <= 200
sort
enum<string>
default:createdAt

Field to sort by (currently only createdAt is supported).

Available options:
createdAt
order
enum<string>
default:desc

Sort direction for results; use desc for newest-first or asc for oldest-first.

Available options:
asc,
desc
createdAtGte
string<date-time>

Filter results to deposits created at or after this ISO-8601 timestamp.

Response

Cursor-paginated list of deposits

data
object[]
nextCursor
string | null

Opaque cursor to fetch the next page, or null when there are no more results.