dnsrobot 0.1.0 copy "dnsrobot: ^0.1.0" to clipboard
dnsrobot: ^0.1.0 copied to clipboard

Official Dart client for DNS Robot (dnsrobot.net) — DNS lookups, WHOIS, SSL checks, SPF/DKIM/DMARC validation, and more.

dnsrobot #

Official Dart client for DNS Robot — 53 free online DNS and network tools.

Zero external dependencies.

Install #

dependencies:
  dnsrobot: ^0.1.0

Usage #

import 'package:dnsrobot/dnsrobot.dart';

void main() async {
  final client = DnsRobotClient();

  // DNS lookup
  final dns = await client.dnsLookup('example.com');

  // WHOIS lookup
  final whois = await client.whoisLookup('example.com');

  // SSL certificate check
  final ssl = await client.sslCheck('example.com');

  // MX records
  final mx = await client.mxLookup('example.com');

  // IP geolocation
  final ip = await client.ipLookup('8.8.8.8');
}

Available Methods #

Method Description Tool Page
dnsLookup DNS record lookup dnsrobot.net/dns-lookup
whoisLookup Domain registration data dnsrobot.net/whois-lookup
sslCheck SSL/TLS certificate check dnsrobot.net/ssl-checker
spfCheck SPF record validation dnsrobot.net/spf-checker
dkimCheck DKIM record check dnsrobot.net/dkim-checker
dmarcCheck DMARC record check dnsrobot.net/dmarc-checker
mxLookup MX record lookup dnsrobot.net/mx-lookup
nsLookup Nameserver lookup dnsrobot.net/ns-lookup
ipLookup IP geolocation dnsrobot.net/ip-lookup
httpHeaders HTTP response headers dnsrobot.net/http-headers-checker
portCheck Port availability check dnsrobot.net/port-checker

License #

MIT

1
likes
150
points
0
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Official Dart client for DNS Robot (dnsrobot.net) — DNS lookups, WHOIS, SSL checks, SPF/DKIM/DMARC validation, and more.

Homepage
Repository (GitHub)
View/report issues

Topics

#dns #whois #ssl #network

License

MIT (license)

More

Packages that depend on dnsrobot