Skip to content

Instantly share code, notes, and snippets.

View craigtockman's full-sized avatar

Craig Tockman craigtockman

View GitHub Profile
@craigtockman
craigtockman / gist:d74c3b6cf075ae85776575c451634b5d
Last active July 4, 2024 20:54
CoinMarketCap API Google Sheets
function coinPrice() {
const myGoogleSheetName =
SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Coins2");
const coinMarketCapAPICall = {
method: "GET",
uri: "https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest?aux=cmc_rank",
qs: {
start: "1",
limit: "5000",
convert: "USD",