GET
/
api
/
v1
/
in
/
ip
/
info
curl --request GET \
  --url https://infopass.in/api/v1/in/ip/info \
  --header 'Authorization: Basic <encoded-value>'
{
  "code": "0x0200",
  "message": "Record found successful.",
  "status": "SUCCESS",
  "data": {
    "status": "success",
    "country": "India",
    "countryCode": "IN",
    "region": "UP",
    "regionName": "Uttar Pradesh",
    "city": "Lucknow",
    "zip": "226003",
    "lat": 26.8756,
    "lon": 80.9115,
    "timezone": "Asia/Kolkata",
    "isp": "Excitel Broadband Private Limited",
    "org": "Excitel",
    "as": "AS133982 Excitel Broadband Private Limited",
    "ip": "146.196.36.84"
  }
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200
application/json
OK

The response is of type object.