# Multi-engine SERP scraper — example query

**Use case:** 

Runs a query across search engines and returns organic results — title, URL, snippet, rank and engine — as clean JSON.

## Input

```json
{
  "queries": [
    "software engineer jobs"
  ],
  "engines": [
    "bing",
    "duckduckgo"
  ],
  "device": "desktop",
  "languageCode": "en",
  "region": "de",
  "maxPagesPerQuery": 1,
  "resultsPerPage": 0,
  "maxItems": 5,
  "includeAds": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "concurrency": 4
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "string"
  },
  "engine": {
    "label": "Engine",
    "format": "string"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "snippet": {
    "label": "Snippet",
    "format": "string"
  },
  "page": {
    "label": "Page",
    "format": "number"
  },
  "device": {
    "label": "Device",
    "format": "string"
  },
  "resultsTotal": {
    "label": "Total results",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Multi-Engine SERP Scraper — Google, Bing, Yahoo, Yandex, Baidu](https://apify.com/nomad-agent/serp-multi-engine-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/nomad-agent/serp-multi-engine-scraper) to learn more, explore other use cases, and run it yourself.