get_domain_emails
Extract email addresses from a specified domain using selected search engines and country filters for precise data retrieval.
Instructions
Retrieve emails from a given domain
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| country | No | The country to search from. Default: us | us | 
| domain | Yes | The domain to search emails from | |
| pages_number | No | The number of pages to search (1-30). Default: 1 | |
| search_engine | No | The search engine to use (google, bing, yahoo, duckduckgo). Default: google | 
Input Schema (JSON Schema)
{
  "properties": {
    "country": {
      "default": "us",
      "description": "The country to search from. Default: us",
      "type": "string"
    },
    "domain": {
      "description": "The domain to search emails from",
      "type": "string"
    },
    "pages_number": {
      "default": 1,
      "description": "The number of pages to search (1-30). Default: 1",
      "maximum": 30,
      "minimum": 1,
      "type": "integer"
    },
    "search_engine": {
      "default": "google",
      "description": "The search engine to use (google, bing, yahoo, duckduckgo). Default: google",
      "type": "string"
    }
  },
  "required": [
    "domain"
  ],
  "type": "object"
}