Skip to content

Instantly share code, notes, and snippets.

View elvisgs's full-sized avatar

Elvis Luciano Guimarães elvisgs

View GitHub Profile
@danperrout
danperrout / TesouroDireto.gs
Last active January 9, 2026 17:43
API Função TESOURODIRETO Google Sheets
/*
* @return Acessa radaropcoes.com e retorna informações de um título específico do Tesouro Direto
* Endpoint: https://api.radaropcoes.com/bonds/{bondName}
*/
function TESOURODIRETO(bondName, argumento = "r") {
let srcURL = "https://api.radaropcoes.com/bonds/" + encodeURIComponent(bondName);
let response = UrlFetchApp.fetch(srcURL, {
muteHttpExceptions: true
});