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.
Direct URL
Google Sheets
Auto-updated imageVisualizer
Progress Circle
A refined radial indicator that showcases progress with smooth motion and elegant color.
Direct URL
Google Sheets
Drop directly into cellsGlyph Studio
OpenMoji Pack
Curate expressive reactions and financial glyphs with instant embeds tailored for your dashboards.
Direct URL
Google Sheets
Perfect for dashboardsData 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 endpointHistorical Price API
REST endpointGoogle Sheets Spot
Custom Apps ScriptGoogle Sheets History
Custom Apps ScriptGoogle 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.