Please try:
function parseIPApi() {
var url = 'https://ipapi.co/75.148.30.137/json';
var parse = UrlFetchApp.fetch(url);
console.log(parse.getContentText())
}
Result:
{
"ip": "75.148.30.137",
"version": "IPv4",
"city": "Woodbridge",
"region": "Virginia",
"region_code": "VA",
"country": "US",
"country_name": "United States",
"country_code": "US",
"country_code_iso3": "USA",
"country_capital": "Washington",
"country_tld": ".us",
"continent_code": "NA",
"in_eu": false,
"postal": "22191",
"latitude": 38.6326,
"longitude": -77.2661,
"timezone": "America/New_York",
"utc_offset": "-0400",
"country_calling_code": "+1",
"currency": "USD",
"currency_name": "Dollar",
"languages": "en-US,es-US,haw,fr",
"country_area": 9629091.0,
"country_population": 327167434,
"asn": "AS7922",
"org": "COMCAST-7922"
}