curl --request GET \
--url https://api.sand.etherfuse.com/lookup/bonds/cost/{identifier}const options = {method: 'GET'};
fetch('https://api.sand.etherfuse.com/lookup/bonds/cost/{identifier}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/lookup/bonds/cost/{identifier}"
response = requests.get(url)
print(response.text){
"bond_cost_in_fiat": "1.153754",
"bond_cost_in_payment_token": "1.153754",
"bond_cost_in_usd": "0.064785",
"bond_symbol": "CETES",
"currency": "MXN",
"current_basis_points": 578,
"current_time": "2026-03-23T16:50:32.821673099+00:00",
"fiat_exchange_rate_with_usd": "17.80900",
"mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"sources": {
"provider_1": {
"bond_cost_in_usd": "0.064781",
"exchange_rate": "17.81",
"updated_at": 1711212632
},
"provider_2": {
"bond_cost_in_usd": "0.064854",
"exchange_rate": "17.79",
"updated_at": 1711212630
}
},
"symbol": "USDC"
}Get stablebond cost
Returns current pricing data for a single stablebond, including the bond cost
in USD, fiat, and per-provider exchange rate sources. The identifier can be
either a Solana mint address (e.g. CETES7CKqqKQizuSN6iWQwmTeFRjbJR6Vw2XRKfEDR8f)
or a bond symbol (e.g. CETES).
Public — no API key required.
curl --request GET \
--url https://api.sand.etherfuse.com/lookup/bonds/cost/{identifier}const options = {method: 'GET'};
fetch('https://api.sand.etherfuse.com/lookup/bonds/cost/{identifier}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/lookup/bonds/cost/{identifier}"
response = requests.get(url)
print(response.text){
"bond_cost_in_fiat": "1.153754",
"bond_cost_in_payment_token": "1.153754",
"bond_cost_in_usd": "0.064785",
"bond_symbol": "CETES",
"currency": "MXN",
"current_basis_points": 578,
"current_time": "2026-03-23T16:50:32.821673099+00:00",
"fiat_exchange_rate_with_usd": "17.80900",
"mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"sources": {
"provider_1": {
"bond_cost_in_usd": "0.064781",
"exchange_rate": "17.81",
"updated_at": 1711212632
},
"provider_2": {
"bond_cost_in_usd": "0.064854",
"exchange_rate": "17.79",
"updated_at": 1711212630
}
},
"symbol": "USDC"
}Path Parameters
Bond mint address or symbol (e.g. "CETES", "USTRY", "CETES7CKqqKQizuSN6iWQwmTeFRjbJR6Vw2XRKfEDR8f")
Query Parameters
Maximum age of a source in seconds. Sources older than this are excluded.
x >= 0Response
Pricing data for the requested bond
Current pricing for a single stablebond: cost in USD/fiat plus the
per-provider exchange-rate sources used to derive it.
Bond cost denominated in the settlement (fiat) currency.
Deprecated — use bond_cost_in_fiat.
Bond cost denominated in USD.
Bond symbol (e.g. CETES).
Settlement currency (ISO 4217, e.g. MXN).
Current annualized rate of the bond, in basis points (e.g. 578 = 5.78%). Read from BondPrice.
Timestamp the price was computed (RFC 3339).
FX rate between the settlement currency and USD.
Payment-token mint address.
Per-FX-provider exchange rate and derived USD cost, for oracle safety checks.
Show child attributes
Show child attributes
Payment-token symbol (e.g. USDC).