Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

62
Visualizações
Handling non JSON API in Javascript

So I am trying to get a circulating supply number of a token and use the API to do a further calculation with it.

All I could find was people handling JSON outputs but this is just a plain output: https://avascan.info/api/v1/supply?q=circulatingSupply

Anyone that can help me how I can fetch this amount and use it to further do calculations with?

about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

You can use the fetch API, which have a text method on it's response, for example:

const BASE_URL = 'https://avascan.info/api/v1/supply?q=circulatingSupply';

async function getCirculatingSupply() {
  const response = await fetch(BASE_URL);
  const data = await response.text();
  return Number(data);
}

getCirculatingSupply().then(console.log);

Keep in mind that maybe you will have problems with CORS, as I had testing this API, so maybe you will need to use a proxy server like cors-anywhere to bypass this problem.

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda