DNS Checker API
The DNS Checker API is a powerful tool designed to facilitate easy access to comprehensive DNS (Domain Name System) information for a given domain.
About
Developer Portal: https://api.market/store/magicapi/dnschecker
Curl Requests and Responses
curl -X 'POST' \
'https://api.magicapi.dev/api/v1/magicapi/dnschecker/dnschecker' \
-H 'accept: application/json' \
-H 'x-magicapi-key: API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"domain": "api.market"
}'import requests
headers = {
'accept': 'application/json',
'x-magicapi-key': 'API_KEY',
'Content-Type': 'application/json',
}
json_data = {
'domain': 'api.market',
}
response = requests.post('https://api.magicapi.dev/api/v1/magicapi/dnschecker/dnschecker', headers=headers, json=json_data)The response would be like this
Last updated