DNS Records Query API Service from Google

Search for a command to run...

Clean your email list even before sending it to a mass emailing solution like AutoSend to avoid a high bounce rate

Try using an alternative to openclaw, which they claim is cheaper to use

Using types (and interfaces) to define a blueprint of a variable

Using GraphQL as an alternative to REST API for Hashnode

making makemigrations work in Django when migrations is not pushed to git

Did you know Google has an API service to fetch DNS records ?
For example, if you want to get the MX records of techcrunch.com, you can get it from here : https://dns.google/query?name=techcrunch.com&rr_type=MX&ecs= where the API endpoint is at https://dns.google/resolve?name=techcrunch.com&type=MX after which you can parse the data.
And the best part ? - its CORS enabled. Meaning you can fetch from client side JavaScript itself from any IP address.
Here's a demo to play with : https://anjanesh.s3.amazonaws.com/demo/google-dns.html
