# Scrape Dogpile search results for keyword research

**Use case:** 

Collect organic results, ads and related searches from Dogpile metasearch for any query. Clean SERP JSON for rank tracking and keyword research.

## Input

```json
{
  "queries": [
    "best CRM software"
  ],
  "maxPagesPerQuery": 3,
  "maxResultsPerQuery": 20,
  "saveHtml": false
}
```

## Output

```json
{
  "position": {
    "label": "#",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "displayedUrl": {
    "label": "Display URL",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "siteName": {
    "label": "Site",
    "format": "string"
  },
  "searchQuery": {
    "label": "Search query",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Dogpile Search Scraper - Metasearch SERP API](https://apify.com/jaybird/dogpile-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/jaybird/dogpile-scraper) to learn more, explore other use cases, and run it yourself.