Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

59
Views
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 answers
Answer question

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!