curl --request GET \
--url https://sandbox.groundtech.co/v2/activity \
--header 'Authorization: Bearer <token>'import requests
url = "https://sandbox.groundtech.co/v2/activity"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://sandbox.groundtech.co/v2/activity', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.groundtech.co/v2/activity",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://sandbox.groundtech.co/v2/activity"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://sandbox.groundtech.co/v2/activity")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.groundtech.co/v2/activity")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "a1b2c3d4-0000-4000-8000-000000000001",
"type": "deposit",
"status": "completed",
"amountUsd": "5000.000000",
"timestamp": "2025-09-05T10:00:00Z",
"deposit": {
"id": "a1b2c3d4-0000-4000-8000-000000000001",
"amount": "5000.000000",
"token": "usdc",
"chain": "ethereum",
"fromAddress": "0xfeed00000000000000000000000000000000beef",
"txHash": "0xb4ec6ad9f2f2d75fb8df30c6e49b1f319138f0172d7bff7c402e7dcb7f017e8a",
"status": "completed",
"createdAt": "2025-09-05T10:00:00Z",
"completedAt": "2025-09-05T10:01:15Z"
}
},
{
"id": "a1b2c3d4-0000-4000-8000-000000000002",
"type": "withdrawal",
"status": "processing",
"amountUsd": "65000.000000",
"timestamp": "2025-09-05T11:00:00Z",
"withdrawal": {
"id": "a1b2c3d4-0000-4000-8000-000000000002",
"amountRequestedUsd": "65000.000000",
"amountPaidUsd": null,
"feeUsd": "0.000000",
"destinationChain": "ethereum",
"destinationAddress": "0x76F8fc6667E239f83a547d4e16225d6a34f6FA22",
"destinationToken": "usdc",
"status": "processing",
"legsCompleted": 0,
"legsTotal": 1,
"payoutLegs": [
{
"status": "pending_customer_approval",
"amountUsd": "65000.000000",
"from": {
"kind": "yield_source",
"id": "syrup-usdc",
"label": "Syrup USDC"
},
"to": {
"kind": "external_payout",
"id": "external_payout:ethereum:usdc",
"label": "External payout (Ethereum)"
},
"startedAt": "2025-09-05T11:00:00Z",
"completedAt": null,
"stepsCompleted": 1,
"stepsTotal": 2,
"steps": [
{
"name": "Redeeming from Syrup USDC",
"stepKind": "yield_source_redeem",
"sequenceRole": "yield_redeem",
"protocolType": "syrup",
"stepOrdinal": 0,
"chain": "ethereum",
"txKind": "yield_source_redeem",
"state": "completed",
"startedAt": "2025-09-05T11:00:00Z",
"completedAt": "2025-09-05T11:01:00Z",
"cancelledAt": null
},
{
"name": "Sending payout",
"stepKind": "external_payout_transfer",
"sequenceRole": "external_payout_transfer",
"protocolType": "external_payout",
"stepOrdinal": 1,
"chain": "ethereum",
"txKind": "external_payout_transfer",
"state": "pending_customer_approval",
"startedAt": "2025-09-05T11:01:00Z",
"completedAt": null,
"cancelledAt": null
}
]
}
],
"failureReason": null,
"createdAt": "2025-09-05T11:00:00Z",
"completedAt": null
}
}
],
"nextCursor": null,
"hasMore": false
}{
"error": "type must be \"deposit\", \"withdrawal\", or \"rebalance\"",
"code": "validation_error"
}{
"error": "Unauthenticated request",
"message": "Missing or invalid bearer token"
}{
"error": "Rate limit exceeded",
"code": "rate_limited"
}{
"error": "Internal server error",
"code": "internal_error"
}List activity
Returns customer-facing wallet activity across the authenticated organization. Pass one or more walletId query parameters to filter to specific wallets.
curl --request GET \
--url https://sandbox.groundtech.co/v2/activity \
--header 'Authorization: Bearer <token>'import requests
url = "https://sandbox.groundtech.co/v2/activity"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://sandbox.groundtech.co/v2/activity', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.groundtech.co/v2/activity",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://sandbox.groundtech.co/v2/activity"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://sandbox.groundtech.co/v2/activity")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.groundtech.co/v2/activity")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "a1b2c3d4-0000-4000-8000-000000000001",
"type": "deposit",
"status": "completed",
"amountUsd": "5000.000000",
"timestamp": "2025-09-05T10:00:00Z",
"deposit": {
"id": "a1b2c3d4-0000-4000-8000-000000000001",
"amount": "5000.000000",
"token": "usdc",
"chain": "ethereum",
"fromAddress": "0xfeed00000000000000000000000000000000beef",
"txHash": "0xb4ec6ad9f2f2d75fb8df30c6e49b1f319138f0172d7bff7c402e7dcb7f017e8a",
"status": "completed",
"createdAt": "2025-09-05T10:00:00Z",
"completedAt": "2025-09-05T10:01:15Z"
}
},
{
"id": "a1b2c3d4-0000-4000-8000-000000000002",
"type": "withdrawal",
"status": "processing",
"amountUsd": "65000.000000",
"timestamp": "2025-09-05T11:00:00Z",
"withdrawal": {
"id": "a1b2c3d4-0000-4000-8000-000000000002",
"amountRequestedUsd": "65000.000000",
"amountPaidUsd": null,
"feeUsd": "0.000000",
"destinationChain": "ethereum",
"destinationAddress": "0x76F8fc6667E239f83a547d4e16225d6a34f6FA22",
"destinationToken": "usdc",
"status": "processing",
"legsCompleted": 0,
"legsTotal": 1,
"payoutLegs": [
{
"status": "pending_customer_approval",
"amountUsd": "65000.000000",
"from": {
"kind": "yield_source",
"id": "syrup-usdc",
"label": "Syrup USDC"
},
"to": {
"kind": "external_payout",
"id": "external_payout:ethereum:usdc",
"label": "External payout (Ethereum)"
},
"startedAt": "2025-09-05T11:00:00Z",
"completedAt": null,
"stepsCompleted": 1,
"stepsTotal": 2,
"steps": [
{
"name": "Redeeming from Syrup USDC",
"stepKind": "yield_source_redeem",
"sequenceRole": "yield_redeem",
"protocolType": "syrup",
"stepOrdinal": 0,
"chain": "ethereum",
"txKind": "yield_source_redeem",
"state": "completed",
"startedAt": "2025-09-05T11:00:00Z",
"completedAt": "2025-09-05T11:01:00Z",
"cancelledAt": null
},
{
"name": "Sending payout",
"stepKind": "external_payout_transfer",
"sequenceRole": "external_payout_transfer",
"protocolType": "external_payout",
"stepOrdinal": 1,
"chain": "ethereum",
"txKind": "external_payout_transfer",
"state": "pending_customer_approval",
"startedAt": "2025-09-05T11:01:00Z",
"completedAt": null,
"cancelledAt": null
}
]
}
],
"failureReason": null,
"createdAt": "2025-09-05T11:00:00Z",
"completedAt": null
}
}
],
"nextCursor": null,
"hasMore": false
}{
"error": "type must be \"deposit\", \"withdrawal\", or \"rebalance\"",
"code": "validation_error"
}{
"error": "Unauthenticated request",
"message": "Missing or invalid bearer token"
}{
"error": "Rate limit exceeded",
"code": "rate_limited"
}{
"error": "Internal server error",
"code": "internal_error"
}status: "processing" before finality for workflow-idle wallets. Processing deposit activity means Ground has detected the inbound onchain transfer; it is not yet credited to wallet balances.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Optional repeatable wallet ID filter.
Opaque cursor from a prior response.
Maximum number of activity items to return. Runtime clamps invalid, missing, and oversized values into the supported 1-100 range.
1 <= x <= 100Use all to include organization-wide activity. Omit for the default wallet-scoped view, optionally filtered by walletId.
all Filter activity by type.
deposit, withdrawal, rebalance Comma-separated public activity statuses to include, or all.
"created,processing"
Inclusive ISO-8601 UTC lower bound for activity timestamps.
Exclusive ISO-8601 UTC upper bound for activity timestamps.