Batch structural-health for N RWA / stablecoin tokens
curl --request POST \
--url https://api.webacy.com/v3/rwa/batch/structural-health \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"tokens": [
{
"address": "0x100faa513ac917181eb29f73b64bf7a434a206fe",
"chain": "base"
},
{
"address": "0xnope",
"chain": "base"
}
]
}
'import requests
url = "https://api.webacy.com/v3/rwa/batch/structural-health"
payload = { "tokens": [
{
"address": "0x100faa513ac917181eb29f73b64bf7a434a206fe",
"chain": "base"
},
{
"address": "0xnope",
"chain": "base"
}
] }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
tokens: [
{address: '0x100faa513ac917181eb29f73b64bf7a434a206fe', chain: 'base'},
{address: '0xnope', chain: 'base'}
]
})
};
fetch('https://api.webacy.com/v3/rwa/batch/structural-health', 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/v3/rwa/batch/structural-health",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'tokens' => [
[
'address' => '0x100faa513ac917181eb29f73b64bf7a434a206fe',
'chain' => 'base'
],
[
'address' => '0xnope',
'chain' => 'base'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.webacy.com/v3/rwa/batch/structural-health"
payload := strings.NewReader("{\n \"tokens\": [\n {\n \"address\": \"0x100faa513ac917181eb29f73b64bf7a434a206fe\",\n \"chain\": \"base\"\n },\n {\n \"address\": \"0xnope\",\n \"chain\": \"base\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.webacy.com/v3/rwa/batch/structural-health")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"tokens\": [\n {\n \"address\": \"0x100faa513ac917181eb29f73b64bf7a434a206fe\",\n \"chain\": \"base\"\n },\n {\n \"address\": \"0xnope\",\n \"chain\": \"base\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.webacy.com/v3/rwa/batch/structural-health")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"tokens\": [\n {\n \"address\": \"0x100faa513ac917181eb29f73b64bf7a434a206fe\",\n \"chain\": \"base\"\n },\n {\n \"address\": \"0xnope\",\n \"chain\": \"base\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"schema_version": "3.0",
"results": [
{
"address": "0x100faa513ac917181eb29f73b64bf7a434a206fe",
"chain": "base",
"ok": true,
"mint_burn_anomaly": {
"status": "pass",
"data_quality": {
"confidence": 0.95,
"last_observed_at": "2026-06-02T09:49:36Z",
"source": "rwa-grade-pipeline"
}
},
"large_holder_concentration": {
"status": "warn",
"data_quality": {
"confidence": 0.95,
"last_observed_at": "2026-06-02T09:49:36Z",
"source": "rwa-grade-pipeline"
}
}
},
{
"address": "0xnope",
"chain": "base",
"ok": false,
"error_code": "NOT_FOUND"
}
]
}RWA Risk (v3)
Batch Structural Health Check
Returns the live structural-health criteria (mint_burn_anomaly, large_holder_concentration) for up to 100 { address, chain } tuples. Per-token failures are reported in-band as { ok: false, error_code } so a single bad address never fails the whole batch (HTTP 200). Addresses travel in the POST body (privacy + non-EVM encoding).
CU cost: 1 CU × token count (v3-rwa-structural-health-batch).
POST
/
v3
/
rwa
/
batch
/
structural-health
Batch structural-health for N RWA / stablecoin tokens
curl --request POST \
--url https://api.webacy.com/v3/rwa/batch/structural-health \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"tokens": [
{
"address": "0x100faa513ac917181eb29f73b64bf7a434a206fe",
"chain": "base"
},
{
"address": "0xnope",
"chain": "base"
}
]
}
'import requests
url = "https://api.webacy.com/v3/rwa/batch/structural-health"
payload = { "tokens": [
{
"address": "0x100faa513ac917181eb29f73b64bf7a434a206fe",
"chain": "base"
},
{
"address": "0xnope",
"chain": "base"
}
] }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
tokens: [
{address: '0x100faa513ac917181eb29f73b64bf7a434a206fe', chain: 'base'},
{address: '0xnope', chain: 'base'}
]
})
};
fetch('https://api.webacy.com/v3/rwa/batch/structural-health', 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/v3/rwa/batch/structural-health",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'tokens' => [
[
'address' => '0x100faa513ac917181eb29f73b64bf7a434a206fe',
'chain' => 'base'
],
[
'address' => '0xnope',
'chain' => 'base'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.webacy.com/v3/rwa/batch/structural-health"
payload := strings.NewReader("{\n \"tokens\": [\n {\n \"address\": \"0x100faa513ac917181eb29f73b64bf7a434a206fe\",\n \"chain\": \"base\"\n },\n {\n \"address\": \"0xnope\",\n \"chain\": \"base\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.webacy.com/v3/rwa/batch/structural-health")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"tokens\": [\n {\n \"address\": \"0x100faa513ac917181eb29f73b64bf7a434a206fe\",\n \"chain\": \"base\"\n },\n {\n \"address\": \"0xnope\",\n \"chain\": \"base\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.webacy.com/v3/rwa/batch/structural-health")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"tokens\": [\n {\n \"address\": \"0x100faa513ac917181eb29f73b64bf7a434a206fe\",\n \"chain\": \"base\"\n },\n {\n \"address\": \"0xnope\",\n \"chain\": \"base\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"schema_version": "3.0",
"results": [
{
"address": "0x100faa513ac917181eb29f73b64bf7a434a206fe",
"chain": "base",
"ok": true,
"mint_burn_anomaly": {
"status": "pass",
"data_quality": {
"confidence": 0.95,
"last_observed_at": "2026-06-02T09:49:36Z",
"source": "rwa-grade-pipeline"
}
},
"large_holder_concentration": {
"status": "warn",
"data_quality": {
"confidence": 0.95,
"last_observed_at": "2026-06-02T09:49:36Z",
"source": "rwa-grade-pipeline"
}
}
},
{
"address": "0xnope",
"chain": "base",
"ok": false,
"error_code": "NOT_FOUND"
}
]
}This endpoint always returns HTTP 200 — check each result’s
ok field, and read error_code (NOT_FOUND, INVALID_ADDRESS, UNSUPPORTED_CHAIN) when ok is false. Malformed requests — empty tokens, more than 100 tokens, or unknown properties — return 400 and no tokens are evaluated. See batch partial-success semantics.Authorizations
Body
application/json
Required array length:
1 - 100 elementsShow child attributes
Show child attributes
⌘I
