# Info Endpoint
Checks the provided ip address (both v4
& v6
formats) and returns all available information.
Request Method: GET
Request URL: https://api.freeiplookupapi.com/v1/info
# Request Parameters
Parameter | Type | Mandatory | Description |
---|---|---|---|
apikey | string | ️ | Your API Key |
ip | string, Path Parameter | ️ | The ip address you want to query |
# Example Request
https://api.freeiplookupapi.com/v1/info?apikey=xxxxxxxxxxxxx&ip=1.1.1.1
# Sample Response
{
"ip": "1.1.1.1",
"country_code": "AU",
"country_name": "Australia",
"region_code": "AU-NSW",
"region_name": "New South Wales",
"city": "Sydney",
"postal_code": "2000",
"time_zone": "Australia/Sydney",
"latitude": -33.86,
"longitude": 151.2
}