To determine the usage type of an IP address using IP2Location.io in Lua, you can use the IP2Location.io API to retrieve geolocation and related data. The usage type field specifies how the IP is being used. For usage types supported, please see API documentation for more info.
luarocks install json-lua
luarocks install luasocket
local http = require("socket.http")
local ltn12 = require("ltn12")
local json = require("JSON")
local t = {}
local ip = "8.8.8.8"
local key = "YOUR_API_KEY"
local full_url = "https://api.ip2location.io/?format=json&key=" .. key .. "&ip=" .. ip
local status, code, headers = http.request({
method = "GET",
url = full_url,
sink = ltn12.sink.table(t),
})
local jsonstr = table.concat(t)
if code == 200 then
local result = json:decode(jsonstr)
if result.usage_type ~= nil then
print("The usage type for IP " .. ip .. " is " .. result.usage_type .. ".")
else
error("ERROR: The usage_type field requires a paid subscription to the Starter plan or higher.")
end
elseif code == 400 or code == 401 then
if jsonstr:find("error_message") then
local result = json:decode(jsonstr)
error("ERROR: " .. result.error.error_message)
else
error(jsonstr)
end
else
error("ERROR: Unable to call API.")
end
lua test.lua
This script will output the usage type of specified IP address. Make sure to replace 8.8.8.8 with the IP address you want and replace YOUR_API_KEY to your own API key.
Empower your applications with accurate IP geolocation information now.
Try It for Free