# Discover Long-Tail Keywords from People Also Ask

**Use case:** 

Extract common questions from Google's 'People Also Ask' section to uncover valuable long-tail keyword opportunities for content creation. This helps target use

## Input

```json
{
  "queries": [
    "what is headless CMS",
    "how to choose an e-commerce platform",
    "best practices for SEO",
    "benefits of cloud computing",
    "marketing automation strategies"
  ],
  "maxResults": 20,
  "countryCode": "uk",
  "languageCode": "en",
  "maxPagesPerQuery": 1,
  "resultsPerPage": 10,
  "timePeriod": "",
  "mobileResults": false,
  "csvFriendlyOutput": false
}
```

## Output

```json
{
  "position": {
    "label": "Position",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "searchQuery": {
    "label": "Search Query",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Search Results Scraper](https://apify.com/crawlerbros/google-search-results-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/google-search-results-scraper) to learn more, explore other use cases, and run it yourself.