curl --request GET \
--url https://api.webacy.com/rwa/hci \
--header 'x-api-key: <api-key>'import requests
url = "https://api.webacy.com/rwa/hci"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.webacy.com/rwa/hci', 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.webacy.com/rwa/hci",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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.webacy.com/rwa/hci"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
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.webacy.com/rwa/hci")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.webacy.com/rwa/hci")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"chain": "eth",
"address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"symbol": "USDC",
"name": "USD Coin",
"holderConcentration": {
"top10": {
"index": 0.421,
"topSharePct": 62.3,
"riskBand": "high"
},
"top30": {
"index": 0.612,
"topSharePct": 78.5,
"riskBand": "extreme"
},
"holderCount": 2341847
}
},
{
"chain": "eth",
"address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"symbol": "USDT",
"name": "Tether USD",
"holderConcentration": {
"top10": {
"index": 0.183,
"topSharePct": 41.7,
"riskBand": "low"
},
"top30": {
"index": 0.241,
"topSharePct": 55.2,
"riskBand": "medium"
},
"holderCount": 5892341
}
}
],
"meta": {
"generatedAt": "2026-04-24T03:00:00Z",
"stale": false,
"page": 1,
"pageSize": 50,
"total": 749,
"totalPages": 15,
"totalUnfiltered": 749,
"byRiskBand": {
"low": 312,
"medium": 187,
"high": 198,
"extreme": 52
},
"riskBandThresholds": {
"low": [
0,
0.2
],
"medium": [
0.2,
0.4
],
"high": [
0.4,
0.6
],
"extreme": [
0.6,
1
]
}
}
}{
"message": "Unauthorized"
}{
"x402Version": 1,
"error": "payment required"
}List all stablecoin and rwa holder data
Returns a paginated list of stablecoins and RWA tokens with daily-updated holder concentration data. Each record includes top-10 and top-30 cohort objects with a Herfindahl-style index, linear top-share percentage, and a risk band. meta.byRiskBand counts are computed before the riskBand filter so dashboards always see the full ecosystem distribution. meta.riskBandThresholds documents the band derivation thresholds in-band.
curl --request GET \
--url https://api.webacy.com/rwa/hci \
--header 'x-api-key: <api-key>'import requests
url = "https://api.webacy.com/rwa/hci"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.webacy.com/rwa/hci', 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.webacy.com/rwa/hci",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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.webacy.com/rwa/hci"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
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.webacy.com/rwa/hci")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.webacy.com/rwa/hci")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"chain": "eth",
"address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"symbol": "USDC",
"name": "USD Coin",
"holderConcentration": {
"top10": {
"index": 0.421,
"topSharePct": 62.3,
"riskBand": "high"
},
"top30": {
"index": 0.612,
"topSharePct": 78.5,
"riskBand": "extreme"
},
"holderCount": 2341847
}
},
{
"chain": "eth",
"address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"symbol": "USDT",
"name": "Tether USD",
"holderConcentration": {
"top10": {
"index": 0.183,
"topSharePct": 41.7,
"riskBand": "low"
},
"top30": {
"index": 0.241,
"topSharePct": 55.2,
"riskBand": "medium"
},
"holderCount": 5892341
}
}
],
"meta": {
"generatedAt": "2026-04-24T03:00:00Z",
"stale": false,
"page": 1,
"pageSize": 50,
"total": 749,
"totalPages": 15,
"totalUnfiltered": 749,
"byRiskBand": {
"low": 312,
"medium": 187,
"high": 198,
"extreme": 52
},
"riskBandThresholds": {
"low": [
0,
0.2
],
"medium": [
0.2,
0.4
],
"high": [
0.4,
0.6
],
"extreme": [
0.6,
1
]
}
}
}{
"message": "Unauthorized"
}{
"x402Version": 1,
"error": "payment required"
}Authorizations
Query Parameters
Filter by chain slug (eth, arb, base, opt, pol, bsc, sol). Returns 400 for unrecognized values.
Filter by HCI risk band. Case-sensitive lowercase. Returns 400 for unrecognized or incorrectly-cased values. meta.byRiskBand counts are always computed before this filter.
low, medium, high, extreme Minimum top-10 holder concentration index (0–1). E.g. 0.4 returns high and extreme tokens only. Returns 400 for non-numeric or out-of-range values.
0 <= x <= 1Field to sort by. Defaults to top10Index.
top10Index, top30Index, symbol, chain, holderCount Sort direction. Defaults to desc.
asc, desc 1-indexed page number. Defaults to 1.
x >= 1Number of results per page. Defaults to 50, max 500.
1 <= x <= 500Response
Paginated HCI list with per-token holderConcentration data and ecosystem-wide meta aggregates
