Skip to main content
GET
/
v2
/
wallets
/
{id}
/
activity
List wallet activity
curl --request GET \
  --url https://sandbox.groundtech.co/v2/wallets/{id}/activity \
  --header 'Authorization: Bearer <token>'
{
  "activity": [
    {
      "id": "a1b2c3d4-0000-4000-8000-000000000001",
      "type": "deposit",
      "amountUsd": "100.00",
      "timestamp": "2025-09-05T10:00:00Z",
      "detail": {}
    },
    {
      "id": "a1b2c3d4-0000-4000-8000-000000000002",
      "type": "withdrawal",
      "amountUsd": "50.00",
      "timestamp": "2025-09-05T11:00:00Z",
      "detail": {}
    }
  ],
  "nextCursor": null,
  "hasMore": false
}

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.

limit
integer
default:20

Maximum number of activity items to return.

Required range: 1 <= x <= 100
type
enum<string>

Filter by activity type.

Available options:
deposit,
withdrawal

Response

Activity feed

activity
object[]
nextCursor
string | null
hasMore
boolean