Get a fee wrapper
curl --request GET \
--url https://sandbox.groundtech.co/v2/fee-wrappers/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://sandbox.groundtech.co/v2/fee-wrappers/{id}"
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/fee-wrappers/{id}', 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/fee-wrappers/{id}",
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/fee-wrappers/{id}"
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/fee-wrappers/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.groundtech.co/v2/fee-wrappers/{id}")
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{
"id": "8f4c52d7-62ab-4db9-a964-92f481f6b851",
"requestId": "2b8332ce-5fe8-4fa6-a1da-d30a78285e07",
"gVaultId": "ground-ustb-vault",
"status": "ready",
"contractAddress": "0x7c4a1cb5a3d5c3c4e019c3f6ab29a0f98c21b814",
"feeRecipientAddress": "0x92e6a1ed742f0c8502f902c61775f57728985b42",
"performanceFeeBps": 2000,
"maxPerformanceFeeBps": 2000,
"managementFeeBps": 0,
"maxManagementFeeBps": 100,
"createdAt": "2026-09-02T18:42:11.000Z",
"updatedAt": "2026-09-02T18:43:29.000Z"
}{
"error": "Unauthenticated request",
"message": "Missing or invalid bearer token"
}{
"error": "<string>",
"code": "validation_error"
}Fee Wrappers
Get a fee wrapper
GET
/
v2
/
fee-wrappers
/
{id}
Get a fee wrapper
curl --request GET \
--url https://sandbox.groundtech.co/v2/fee-wrappers/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://sandbox.groundtech.co/v2/fee-wrappers/{id}"
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/fee-wrappers/{id}', 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/fee-wrappers/{id}",
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/fee-wrappers/{id}"
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/fee-wrappers/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.groundtech.co/v2/fee-wrappers/{id}")
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{
"id": "8f4c52d7-62ab-4db9-a964-92f481f6b851",
"requestId": "2b8332ce-5fe8-4fa6-a1da-d30a78285e07",
"gVaultId": "ground-ustb-vault",
"status": "ready",
"contractAddress": "0x7c4a1cb5a3d5c3c4e019c3f6ab29a0f98c21b814",
"feeRecipientAddress": "0x92e6a1ed742f0c8502f902c61775f57728985b42",
"performanceFeeBps": 2000,
"maxPerformanceFeeBps": 2000,
"managementFeeBps": 0,
"maxManagementFeeBps": 100,
"createdAt": "2026-09-02T18:42:11.000Z",
"updatedAt": "2026-09-02T18:43:29.000Z"
}{
"error": "Unauthenticated request",
"message": "Missing or invalid bearer token"
}{
"error": "<string>",
"code": "validation_error"
}Wait for
status: ready before allowing deposits. Ready responses include the
wrapper address, underlying gtoken source, fee configuration, TVL, and liquidity.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Organization-owned fee-wrapper ID.
Pattern:
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89aAbB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$Example:
"8f4c52d7-62ab-4db9-a964-92f481f6b851"
Response
Fee-wrapper state and fee configuration.
Pattern:
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89aAbB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$Example:
"8f4c52d7-62ab-4db9-a964-92f481f6b851"
Pattern:
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89aAbB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$Example:
"8f4c52d7-62ab-4db9-a964-92f481f6b851"
Source ID returned by the gtoken yield-source catalogue.
Available options:
ground-ustb-vault Example:
"ground-ustb-vault"
Available options:
provisioning, ready, failed Deployed nonzero EVM contract address, or null while deployment is pending.
Required string length:
42Pattern:
^0x(?!0{40}$)[0-9a-fA-F]{40}$Example:
"0x7c4a1cb5a3d5c3c4e019c3f6ab29a0f98c21b814"
Valid EVM address. Mixed-case values must use a valid EIP-55 checksum.
Required string length:
42Pattern:
^0x[0-9a-fA-F]{40}$Example:
"0x92e6a1ed742f0c8502f902c61775f57728985b42"
Required range:
0 <= x <= 9999Required range:
0 <= x <= 9999Required range:
0 <= x <= 9999Immutable annual management fee cap. New wrappers use 100 bps; older wrappers retain their deployed cap.
Required range:
0 <= x <= 9999