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 June 25, 2025 15:21
API Função TESOURODIRETO Google Sheets
/*
* @return Acesse radaropcoes.com Retorna a cotação atual de um título específico do Tesouro Direto.
* API: https://radaropcoes.com/
* Fonte: https://www.tesourodireto.com.br/titulos/precos-e-taxas.htm
**/
function TESOURODIRETO(bondName, argumento="r") {
let srcURL = "https://api.radaropcoes.com/bonds.json";
let jsondata = UrlFetchApp.fetch(srcURL);
let parsedData = JSON.parse(jsondata.getContentText()).response;