I'm using google appscript to try and retrieve the price details for individual currencies using CoinMarketCap api quotes endpoint as opposed to the listing that fetches 5000 pairs at a time, lest I dry out my api credits for the month in less than a week. But for some reason the quote returned is
quote: { USD: [Object] } }
To give an excerpt of the returned JSON:
{ BTC:
{ id: 1,
name: 'Bitcoin',
symbol: 'BTC',
slug: 'bitcoin',
num_market_pairs: 9466,
date_added: '2013-04-28T00:00:00.000Z',
tags:
[ 'mineable',
'pow',
'sha-256',
....
....
self_reported_circulating_supply: null,
self_reported_market_cap: null,
last_updated: '2022-05-27T04:37:00.000Z',
quote: { USD: [Object] } },
How can I retrieve the actual quote figure for my currency?
Per the API Documentation, the
quote
structure is:A useful method to log objects effectively is:
Additionally:
By converting the
data
object into an array, you can iterate/loop the data as shown above.Learn More: