Sample code for 30+ languages & platforms
PowerBuilder

ip-api.com IPv4 Geolocation Lookup

See more Geolocation Examples

Demonstrates how to lookup Geolocation data for an IPv4 address using the ip-api.com API.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Http
string ls_JsonStr
oleobject loo_Json
string ls_As
string ls_City
string ls_Country
string ls_CountryCode
string ls_Isp
string ls_Lat
string ls_Lon
string ls_Org
string ls_Query
string ls_Region
string ls_RegionName
string ls_Status
string ls_Timezone
string ls_Zip

li_Success = 0

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

// Lookup an IPv4 address: 149.250.207.170  (this was a randomly chosen address)
ls_JsonStr = loo_Http.QuickGetStr("http://ip-api.com/json/149.250.207.170")
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    return
end if

loo_Json = create oleobject
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")

loo_Json.EmitCompact = 0
li_Success = loo_Json.Load(ls_JsonStr)

Write-Debug loo_Json.Emit()

// Sample output:
// Use this online tool to generate parsing code from sample JSON: 
// Generate Parsing Code from JSON

// {
//   "as": "AS15854 Hewlett Packard GmbH",
//   "city": "B�blingen",
//   "country": "Germany",
//   "countryCode": "DE",
//   "isp": "Triaton Frankfurt",
//   "lat": 48.6779,
//   "lon": 8.97297,
//   "org": "EntServ Deutschland GmbH",
//   "query": "149.250.207.170",
//   "region": "BW",
//   "regionName": "Baden-W�rttemberg",
//   "status": "success",
//   "timezone": "Europe/Berlin",
//   "zip": "71034"
// }

ls_As = loo_Json.StringOf("as")
ls_City = loo_Json.StringOf("city")
ls_Country = loo_Json.StringOf("country")
ls_CountryCode = loo_Json.StringOf("countryCode")
ls_Isp = loo_Json.StringOf("isp")
ls_Lat = loo_Json.StringOf("lat")
ls_Lon = loo_Json.StringOf("lon")
ls_Org = loo_Json.StringOf("org")
ls_Query = loo_Json.StringOf("query")
ls_Region = loo_Json.StringOf("region")
ls_RegionName = loo_Json.StringOf("regionName")
ls_Status = loo_Json.StringOf("status")
ls_Timezone = loo_Json.StringOf("timezone")
ls_Zip = loo_Json.StringOf("zip")


destroy loo_Http
destroy loo_Json