No description
| api | ||
| lib | ||
| .gitignore | ||
| config.example.json | ||
| index.js | ||
| LICENSE | ||
| package.json | ||
| README.md | ||
| yarn.lock | ||
api.kaki87.net
100% FOSS & unlimited no-logs API
Endpoints
GET /whois/{domain}
Requirements
whoislinux package
Example URL
https://api.kaki87.net/whois/kaki87.net
Example result
{
"success": true,
"data": {
"domain name": [
"kaki87.net"
],
"registry domain id": [
"1917812383_domain_net-vrsn"
],
"registrar whois server": [
"whois.ovh.com"
],
"registrar": [
"ovh sas"
],
"registrar iana id": [
"433"
],
"registrar abuse contact email": [
"abuse@ovh.net"
],
"registrar abuse contact phone": [
"+33.972101007"
],
"name server": [
"dns111.ovh.net",
"ns111.ovh.net"
],
"dnssec": [
"signeddelegation"
],
"dnssec ds data": [
"47169 7 2 ac9912d2eb8a6391f3afd8b11638fa38e5ea0713847c9553f6fb4562dcc1c2cc"
],
"registrant country": [
"fr"
],
"registrant email": [
"e76wykeshqth514tqcv6@i.o-w-o.info"
],
"admin email": [
"c18djegvevqsvat21oep@v.o-w-o.info"
],
"tech email": [
"c18djegvevqsvat21oep@v.o-w-o.info"
]
}
}
Known issues
- The regular expression used to sort relevant and irrelevant output lines from the
whoiscommand might hide relevant ones and/or show irrelevant ones. Don't hesitate to report these.
GET /dns/{domain}
Requirements
dnsutilslinux package
Example URL
https://api.kaki87.net/dns/kaki87.net
https://api.kaki87.net/dns/kaki87.net?nameserver=9.9.9.9
Example result
{
"success": true,
"data": [
{
"domain": "kaki87.net.",
"ttl": "1530",
"type": "A",
"value": "62.210.109.120"
}
]
}