Twigscan API
Live and historical data for lending markets and stablecoin vaults.
$299/month · Secure checkout with Stripe
{
"timestamp": "2026-02-28T00:00:00Z",
"slug": "ethena-susde",
"displayProtocol": "Ethena",
"displaySymbol": "sUSDe",
"chainSlug": "ethereum",
"supply": 1958342400.17,
"supplyApr": 0.0861
}
Get the entire history of stablecoin lending markets and vaults including total supplied and supply rates.
Live stablecoin yields
GET
/v2/twigscan/latest
Live yields and total supplied for all lending markets and vaults.
Example: curl "https://api.aavescan.com/v2/twigscan/latest?apiKey=YOUR_KEY"
Historical stablecoin yields
GET
/v2/twigscan/daily/{vaultSlug}
Full daily history for the selected source. Returns full daily snapshots from market launch with supply APY, total supplied, and supply index values.
Example: curl "https://api.aavescan.com/v2/twigscan/daily/ethena-susde?apiKey=YOUR_KEY"
Response fields
The Twigscan endpoints return snapshots representing the stablecoin yield market at each timestamp. Responses include the following fields:
- slug: Stable identifier for the Twigscan vault.
- displayProtocol: Protocol label for the vault.
- displaySymbol: Human-readable vault/token symbol.
- chainSlug: Chain identifier for the dataset.
- timestamp: Unix timestamp for the snapshot.
- fetchedAt: ISO timestamp for when the data was fetched.
- supply: Total supplied amount for the vault at the snapshot timestamp.
- supplyApr: Supply APR at the snapshot timestamp (decimal format).
- supplyIndex: Cumulative index used to calculate realized depositor return between two timestamps when available.
Questions or integration help: contact@aavescan.com.
API key
API keys are included with the Advanced plan. Your API key will be sent to the email associated with your account.
Code examples
Here's a minimal Python example that fetches live stablecoin yields
data using the
requests
library. Pass your key as the
apiKey
query parameter when calling the API.
# Note: brotli must be installed to handle br decompression
# >>> pip install brotli requests
import requests
url = "https://api.aavescan.com/v2/twigscan/latest"
params = {"apiKey": "YOUR_KEY"}
response = requests.get(url, params=params)
data = response.json()
print(data)