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.
- Host: GitHub
- URL: https://github.com/bioblaze/dns_lookup_service
- Owner: Bioblaze
- License: mit
- Created: 2021-06-03T18:00:06.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-03T19:36:14.000Z (about 5 years ago)
- Last Synced: 2025-01-29T11:46:09.233Z (over 1 year ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
```