curl --request GET \
--url https://api.gauntlet.xyz/v1/users/{wallet_address}/activity \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.gauntlet.xyz/v1/users/{wallet_address}/activity"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.gauntlet.xyz/v1/users/{wallet_address}/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://api.gauntlet.xyz/v1/users/{wallet_address}/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://api.gauntlet.xyz/v1/users/{wallet_address}/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://api.gauntlet.xyz/v1/users/{wallet_address}/activity")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.gauntlet.xyz/v1/users/{wallet_address}/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": [
{
"assets_delta": {
"native": "<string>",
"token": {
"address": "<string>",
"decimals": 123,
"symbol": "<string>"
}
},
"block_hash": "<string>",
"block_number": 123,
"block_timestamp": 123,
"shares_delta": "<string>",
"tx_hash": "<string>",
"type": "<string>",
"vault_id": "<string>",
"request_hash": "<string>"
}
],
"meta": {
"count": 123,
"limit": 123,
"refreshed_at": "2023-11-07T05:31:56Z",
"request_id": "<string>",
"end": "2023-11-07T05:31:56Z",
"next_cursor": "<string>",
"partial_errors": [
{
"code": "<string>",
"message": "<string>",
"resource_id": "<string>"
}
],
"start": "2023-11-07T05:31:56Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Get user wallet activity (deposits, withdrawals, transfers)
Immutable log of on-chain events that affected the wallet’s vault position. Each row is a frozen-in-time record; rows never mutate after emission.
?vault_id= narrows to one vault; omitted = activity across every vault the wallet has touched, scoped to the Gauntlet-curated vault set (listed vaults by default, include_hidden=true widens to hidden vaults; disabled vaults never appear). Each row echoes its vault_id so wallet-wide consumers can distinguish per-vault activity.
Async deposit/redeem lifecycles emit multiple rows (one at request time with status=pending, a later one with status=settled or refunded). Consumers correlate them via request_hash to follow a single action across rows. Sync flows emit one row directly in the settled state.
Pagination is cursor-only. Default order is desc (newest first). Default page size 100, max 1000.
curl --request GET \
--url https://api.gauntlet.xyz/v1/users/{wallet_address}/activity \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.gauntlet.xyz/v1/users/{wallet_address}/activity"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.gauntlet.xyz/v1/users/{wallet_address}/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://api.gauntlet.xyz/v1/users/{wallet_address}/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://api.gauntlet.xyz/v1/users/{wallet_address}/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://api.gauntlet.xyz/v1/users/{wallet_address}/activity")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.gauntlet.xyz/v1/users/{wallet_address}/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": [
{
"assets_delta": {
"native": "<string>",
"token": {
"address": "<string>",
"decimals": 123,
"symbol": "<string>"
}
},
"block_hash": "<string>",
"block_number": 123,
"block_timestamp": 123,
"shares_delta": "<string>",
"tx_hash": "<string>",
"type": "<string>",
"vault_id": "<string>",
"request_hash": "<string>"
}
],
"meta": {
"count": 123,
"limit": 123,
"refreshed_at": "2023-11-07T05:31:56Z",
"request_id": "<string>",
"end": "2023-11-07T05:31:56Z",
"next_cursor": "<string>",
"partial_errors": [
{
"code": "<string>",
"message": "<string>",
"resource_id": "<string>"
}
],
"start": "2023-11-07T05:31:56Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Ethereum wallet address
Query Parameters
CAIP-10 vault identifier. Optional — omit for wallet-wide activity across every vault the wallet has touched.
Opaque cursor from previous meta.next_cursor.
Page size (1–1000, default 100).
Sort direction: desc (default) or asc.
Wallet-wide feeds only: include activity in hidden (enabled but unlisted) vaults alongside visible ones. Activity in disabled vaults is never returned. Ignored when vault_id is set.