Sheetji Studio

Sheetji

Calm, crafted visuals built for spreadsheets.

Visualizer

Progress Bar

Dial in the exact completion state and drop the sleek bar straight into your sheet or canvas.

Progress bar displaying 33 percent33%
33%

Direct URL

Google Sheets

Auto-updated image

Visualizer

Progress Circle

A refined radial indicator that showcases progress with smooth motion and elegant color.

Progress circle displaying 90 percent
90%

Direct URL

Google Sheets

Drop directly into cells

Glyph Studio

OpenMoji Pack

Curate expressive reactions and financial glyphs with instant embeds tailored for your dashboards.

PreviewEmoji πŸͺ™
Emoji πŸͺ™

Direct URL

Google Sheets

Perfect for dashboards

Data Feeds

Crypto Pricing API

Fetch live spot values and historical closes for any token on Coingeckoβ€”perfect for your automated treasury dashboards.

Real-time Price API

REST endpoint

Historical Price API

REST endpoint

Google Sheets Spot

Custom Apps Script

Google Sheets History

Custom Apps Script

Google Sheets

Apps Script integration

Copy these lightweight helpers into your Sheet and tap into the price endpoints instantly.

function priceapi(crypto_id) {
  var full_url = 'https://sheetji.vercel.app/api/crypto/price/' + crypto_id;
  var response = UrlFetchApp.fetch(full_url);
  var data = JSON.parse(response.getContentText());
  return data['price'].replace('$', '');
}

function price_history(crypto_id, date) {
  var full_url = 'https://sheetji.vercel.app/api/crypto/history/' + crypto_id + '/' + date;
  var response = UrlFetchApp.fetch(full_url);
  var data = JSON.parse(response.getContentText());
  return data['price'].replace('$', '');
}

Crypto IDs are sourced from Coingecko (example: bitcoin). Dates follow the MM-DD-YYYY format.