I'm testing various free / public web APIs which take IP numbers as parameters.
I want to see what kind of results they return under various error conditions.
How can I find a regular IP address which is not yet used / assigned / sold?
I know there are some special reserved IP ranges which can never be assigned but I want to test specifically for the case of IP addresses in the assignable space because some of these web APIs may have different code to handle these cases and return different forms of results.
Example:
freegeoip.net response for reserved IP http://freegeoip.net/json/192.168.1.2
{"city": "", "region_code": "", "region_name": "", "metrocode": "", "zipcode": "", "longitude": "0", "latitude": "0", "country_code": "RD", "ip": "192.168.1.2", "country_name": "Reserved"}
But what does it return for IP numbers not in its database etc?
I want a way to find IP addresses for testing any such web API, not just freegeoip.net.