Coinbase Exchange API
cURL
curl --request GET \ --url https://api.exchange.coinbase.com/wrapped-assets \ --header 'cb-access-key: <api-key>' \ --header 'cb-access-passphrase: <api-key>' \ --header 'cb-access-sign: <api-key>' \ --header 'cb-access-timestamp: <api-key>'
{ "wrapped_assets": [ { "id": "CBETH", "circulating_supply": "221127.7137774658", "total_supply": "926714.1251656958084", "conversion_rate": "1.006081377449935752", "apy": "0.0384" } ] }
Returns a list of all supported wrapped assets details objects
Show child attributes
The symbol of the wrapped asset
The assets wrapped by customers less the assets unwrapped by customers existing outside of Coinbase's premint account
The total token supply of the asset matching that on Etherscan
The conversion rate between the wrapped asset and the underlying asset
The APY earned by the supply of the underlying asset
The estimated time to redeem the wrapped asset in days
Was this page helpful?