synternet.insights.tbtc.asset-list logo

synternet.insights.tbtc.asset-list (TBTC Asset List)

In Insights by Synternet

1 user(s)

4 SYNT

Documentation

{ "endpoint": "synternet.tbtc-dapp.asset_list", "description": "Fetch comprehensive information about tBTC asset, including metrics such as volume, locked amounts, and market data", "payload": {}, "response": { "assets": { "type": "array", "items": { "type": "object", "properties": { "rank": { "type": "integer", "description": "Asset rank based on market cap" }, "name": { "type": "string", "description": "Full name of the asset" }, "ticker": { "type": "string", "description": "Trading symbol of the asset" }, "locked_amount": { "type": "object", "properties": { "token": { "type": "float", "description": "Total amount of tBTC locked across all chains" }, "usd": { "type": "float", "description": "USD value of total locked tBTC" } } }, "price": { "type": "float", "description": "Current price of tBTC in USD" }, "market_cap": { "type": "float", "description": "Total market capitalization in USD (locked_amount * price)" }, "volume_24h": { "type": "object", "properties": { "token": { "type": "float", "description": "Total volume of mint and burn transactions in the last 24 hours in tBTC" }, "usd": { "type": "float", "description": "USD value of 24-hour volume" } } }, "locked_change_24h": { "type": "object", "properties": { "amount": { "type": "object", "properties": { "token": { "type": "float", "description": "Change in locked tBTC amount over last 24 hours" }, "usd": { "type": "float", "description": "USD value of locked amount change" } } }, "percentage": { "type": "float", "description": "Percentage change in locked amount over last 24 hours" }, "last_updated": { "type": "string", "format": "datetime", "description": "Timestamp of the last locked amount update" } } }, "last_updated": { "type": "string", "format": "datetime", "description": "Timestamp of the last data update" } } } } }, "examples": { "Request": { "payload": {} }, "Response": { "assets": [ { "rank": 1, "name": "Threshold BTC", "ticker": "tBTC", "locked_amount": { "token": 532.2, "usd": 22929757.20 }, "price": 43067.89, "market_cap": 22929757.20, "volume_24h": { "token": 28.75, "usd": 1238201.84 }, "locked_change_24h": { "amount": { "token": 12.3, "usd": 529735.05 }, "percentage": 2.15, "last_updated": "2024-03-26T12:34:56Z" }, "last_updated": "2024-03-26T12:34:56Z" } ] } }, "notes": [ "Returns tBTC asset data across all supported networks (Ethereum, Arbitrum, Base, Optimism, Polygon, Solana)", "Volume is calculated from mint and burn transactions across all chains", "Locked amount represents the total tBTC supply across all supported networks", "Price data is obtained from CMC price feed subscription", "Market cap is calculated as the product of locked amount and current price", "All percentage changes are calculated using 24-hour time window", "This endpoint requires no parameters", "USD values are calculated using current tBTC price", "Data includes cross-chain transfers via Wormhole on L2 networks" ], "update_frequency": "Data is updated every 15 minutes" }