List stablebonds
curl --request GET \
--url https://api.sand.etherfuse.com/lookup/stablebondsconst options = {method: 'GET'};
fetch('https://api.sand.etherfuse.com/lookup/stablebonds', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/lookup/stablebonds"
response = requests.get(url)
print(response.text){
"calculatedAt": "2024-01-15T12:00:00Z",
"stablebonds": [
{
"blockchains": [
{
"blockchain": "stellar",
"tokenIdentifier": "CETES-GC3CW7EDYRTWQ635VDIGY6S4ZUF5L6TQ7AA4MWS7LEQDBLUSZXV7UPS4",
"totalSupply": "106595.334047"
},
{
"blockchain": "solana",
"tokenIdentifier": "AvvetPGuuB5FD5m86fpw3LtDKyQoUFT1mG9WarNQLW4q",
"totalSupply": "916496.867925"
}
],
"bondCurrency": "MXN",
"netAmountDecimal": "1309439.053036",
"netValueDecimal": "1467139.953242",
"purchaseOrderAmount": "283617.373522",
"redeemOrderAmount": "0",
"solanaMintAddress": "AvvetPGuuB5FD5m86fpw3LtDKyQoUFT1mG9WarNQLW4q",
"symbol": "CETES",
"tokenPriceDecimal": "1.120434"
}
]
}Lookup API
List stablebonds
Returns all stablebonds with current prices, supplies, and multi-chain breakdown. Data is cached for ~5 minutes.
Public — no API key required.
GET
/
lookup
/
stablebonds
List stablebonds
curl --request GET \
--url https://api.sand.etherfuse.com/lookup/stablebondsconst options = {method: 'GET'};
fetch('https://api.sand.etherfuse.com/lookup/stablebonds', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/lookup/stablebonds"
response = requests.get(url)
print(response.text){
"calculatedAt": "2024-01-15T12:00:00Z",
"stablebonds": [
{
"blockchains": [
{
"blockchain": "stellar",
"tokenIdentifier": "CETES-GC3CW7EDYRTWQ635VDIGY6S4ZUF5L6TQ7AA4MWS7LEQDBLUSZXV7UPS4",
"totalSupply": "106595.334047"
},
{
"blockchain": "solana",
"tokenIdentifier": "AvvetPGuuB5FD5m86fpw3LtDKyQoUFT1mG9WarNQLW4q",
"totalSupply": "916496.867925"
}
],
"bondCurrency": "MXN",
"netAmountDecimal": "1309439.053036",
"netValueDecimal": "1467139.953242",
"purchaseOrderAmount": "283617.373522",
"redeemOrderAmount": "0",
"solanaMintAddress": "AvvetPGuuB5FD5m86fpw3LtDKyQoUFT1mG9WarNQLW4q",
"symbol": "CETES",
"tokenPriceDecimal": "1.120434"
}
]
}Response
All stablebonds with pricing and supply