# Start website email scraping with a small seed list

**Use case:** 

Test a compact list of public website URLs, cap the first batch, and export unique email rows with source context.

## Input

```json
{
  "urls": [
    {
      "url": "https://www.w3.org/contact/"
    },
    {
      "url": "https://www.apache.org/foundation/contact"
    },
    {
      "url": "https://www.ietf.org/contact/"
    }
  ],
  "maxNbEmailsToScrape": 25,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "email": {
    "label": "Email",
    "format": "string"
  },
  "url": {
    "label": "Source URL",
    "format": "string"
  },
  "seedUrl": {
    "label": "Seed URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Website Emails Scraper](https://apify.com/maximedupre/website-emails-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/website-emails-scraper) to learn more, explore other use cases, and run it yourself.