Get all wrapped assets
gethttps://api.exchange.coinbase.com/wrapped-assets
Returns a list of all supported wrapped assets details objects
Returns a list of all supported wrapped assets details objects
xxxxxxxxxx
const axios = require('axios');
let config = {
method: 'get',
maxBodyLength: Infinity,
url: 'https://api.exchange.coinbase.com/wrapped-assets',
headers: {
'Content-Type': 'application/json'
}
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
Click an example response code to see the response here!