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

431
Views
Javascript Fetch() - How to save output to variable as a JSON Object (not the Promise)

Please I'd like to save the json response to a variable, but it shows undefined when printing it.

let rawdata;
fetch("https://api.db-ip.com/v2/free/self", {
method: 'GET',
headers: {
  Accept: 'application/json',
},
},
).then(response => {
if (response.ok) {
  response.json().then(
    data => rawdata = data).then(
      () => console.log(rawdata)
    )
};})
console.log(JSON.stringify(rawdata));
console.log(rawdata);
message = {
    "ipAddress": rawdata.ipAddress,
    "countryName": rawdata.countryName,
    "city": rawdata.city,
    "browser": browserName
  }

The first log is correct, but the second one isn't.

Thanks in advance.

about 4 years ago · Juan Pablo Isaza
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!