Example 1, associative array http://ip2country.hackers.lv/api/ip2country?ip=8.8.8.8,4.4.4.4,127.0.0.1 Example output (JSON): {"c":{"8.8.8.8":"US","4.4.4.4":"US","127.0.0.1":false}}
Example 2, array http://ip2country.hackers.lv/api/ip2country?return=array&ip=8.8.8.8,4.4.4.4,127.0.0.1 Example output (JSON): ["US","US",false]
Example 3, curl curl -X POST -d "return=array&ip=8.8.8.8,4.4.4.4,127.0.0.1" http://ip2country.hackers.lv/api/ip2country Example output (JSON): ["US","US",false]