✨ Commissions are DISCOUNTED right now. Grab a spot while it lasts.Contact me

×
Back to Portfolio

Roblox Server Info Lookup - v1.3.6

A powerful and completely free API service that lets you enter any IP address and instantly verify if it belongs to a valid Roblox server. Make unlimited requests with no restrictions, and get detailed information about the server whenever it’s valid.

How to Use

--[[
    You are not required to use the ip query param "ip" if you dont want to.
    If you do not provide a IP it will use the IP thats making the request.
]]--

local HttpService = game:GetService("HttpService")
local API_URL = "https://api.gemtool.dev/lookup?ip=103.140.28.178"

local success, response = pcall(function()
	return HttpService:GetAsync(API_URL, false)
end)

local function printTable(t: table, name: string)
	for k,v in pairs(t) do
		if typeof(v) == "table" then printTable(v, tostring(k)) else k = '["'..k..'"]';v = typeof(v) == "string" and '"'..v..'"' or v;print((name and name.." > "..k or k).." =", v) end
	end
end

if success then
	printTable(HttpService:JSONDecode(response))
else
	warn("API request failed:", response)
end