# DuckDuckGo search results scraper

**Use case:** 

Scrape DuckDuckGo web results for privacy-focused searches with titles, URLs, snippets, hostnames, and ranks.

## Input

```json
{
  "queries": [
    "privacy focused analytics tools",
    "best private search engines"
  ],
  "searchType": "web",
  "maxResults": 30,
  "region": "us-en",
  "timeRange": ""
}
```

## Output

```json
{
  "position": {
    "label": "#",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "hostname": {
    "label": "Domain",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "time": {
    "label": "Date",
    "format": "text"
  },
  "searchQuery": {
    "label": "Query",
    "format": "text"
  }
}
```

## About this Actor

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