dns_lookup
Resolve domain names to IP addresses using Shodan's DNS service. Supports batch resolution of multiple hostnames in a single query to map hostnames to their corresponding IP addresses.
Instructions
Resolve domain names to IP addresses using Shodan's DNS service. Supports batch resolution of multiple hostnames in a single query. Returns IP addresses mapped to their corresponding hostnames.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hostnames | Yes | List of hostnames to resolve. |
Input Schema (JSON Schema)
{
"properties": {
"hostnames": {
"description": "List of hostnames to resolve.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"hostnames"
],
"type": "object"
}