An open API service indexing awesome lists of open source software.

https://github.com/bioblaze/dns_lookup_service

DNS Lookup Service allows you to query DNS for a Domain, and retrieve set records based on your query.
https://github.com/bioblaze/dns_lookup_service

Last synced: about 1 year ago
JSON representation

DNS Lookup Service allows you to query DNS for a Domain, and retrieve set records based on your query.

Awesome Lists containing this project

README

          

# DNS Lookup Service

Created this because I needed it, I hope it helps you. Dockerfile is included, should automatically deploy.

Example POST
```console
curl --location --request POST 'localhost:41419/api/dns/' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "a",
"domain": "divine.games"
}'
```

Example GET
```console
curl --location --request GET 'localhost:41419/api/dns/a/divine.games'
```