Documentation
{ "endpoint": "synternet.wbtc-dapp.asset_list", "description": "Fetch comprehensive information about WBTC 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 WBTC locked across all chains" }, "usd": { "type": "float", "description": "USD value of total locked WBTC" } } }, "price": { "type": "float", "description": "Current price of WBTC 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 confirmed mints and burns in the last 24 hours in WBTC" }, "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 WBTC 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": "Wrapped Bitcoin", "ticker": "WBTC", "locked_amount": { "token": 476.75, "usd": 20540776.75 }, "price": 43067.89, "market_cap": 20540776.75, "volume_24h": { "token": 25.5, "usd": 1098231.20 }, "locked_change_24h": { "amount": { "token": 10.5, "usd": 452212.85 }, "percentage": 1.85, "last_updated": "2024-03-26T12:34:56Z" }, "last_updated": "2024-03-26T12:34:56Z" } ] } }, "notes": [ "Returns WBTC asset data across all supported networks (Ethereum, Base, Kava, Osmosis)", "Volume is calculated from confirmed mint and burn transactions across all chains", "Locked amount represents the total WBTC 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 WBTC price" ], "update_frequency": "Data is updated every 15 minutes" }