API Documentation

Coming soon

Temporary API

At this time may contain some errors or bugs. Use carefully.

Valid USER-Agent header is required!

Get domain info
GET: /api/whoisinfo/domain/{{Domain}}

Answer success (json):


{
	"success":true,
	"ISP":"ISP Name",
	"ASN":"AS Number",
	"ASNimg":"(optional) url to isp img",
	"Country":"Country Full Name",
	"Short_name":"Country 2 Letter Code",
	"City":"City Name",
	"dns":[
		{
			"name":"DNS server name",
			"ttl":"DNS server TTL",
			"ip":"DNS server IPv4"
		},
		{
			"name":"DNS server name",
			"ttl":"DNS server TTL",
			"ip":"DNS server IPv4"
		}
	],
	"rank":"Rank of top domain",
	"IP_list":[
		{
			"value":"IP",
			"type":"Int IP type (4 or 6)"
		}
	],
	"IPv4":"IPv4 of domain",
	"IPv6":"IPv6 of domain",
	"PTR":"PTR for IPv4",
	"img":"URL to Country IMG"
}

Answer fail (json):


{
	"success":false,
	"message":"String Message"
}
Get IP info
GET: /api/whoisinfo/ip/{{IP_v4_or_v6}}

Answer success (json):


{
	"success":true,
	"ISP":"ISP Name",
	"Country":"Country Full Name",
	"Short_name":"Country 2 Letter Code",
	"City":"City Name",
	"IPv4":"(optional) IPv4",
	"IPv6":"(optional) IPv6",
	"ASN":"AS Number",
	"ASNimg":"(optional) url to isp img",
	"PTR":"PTR",
	"img":"URL to Country IMG"
}

Answer fail (json):


{
	"success":false,
	"message":"String Message"
}
Test API maybe later