# Google Flights Scraper (`curious_coder/google-flights-scraper`) Actor

Search Google Flights for any route and export prices, airlines, times, stops and more.

- **URL**: https://apify.com/curious\_coder/google-flights-scraper.md
- **Developed by:** [Curious Coder](https://apify.com/curious_coder) (community)
- **Categories:** Travel
- **Stats:** 2 total users, 1 monthly users, 50.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.10 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Google Flights Scraper

Search **Google Flights** for any route and get the results as clean, structured data — prices, airlines, departure and arrival times, flight duration, number of stops, layovers, aircraft, and estimated CO₂ emissions.

Perfect for price monitoring, travel dashboards, fare alerts, market research, or feeding flight data into your own app or spreadsheet.

---

### What you can do

- 🔎 Search **one-way** and **round-trip** flights for any route and date
- 💸 Get **live prices** in the currency of your choice
- 🛫 See **airlines, flight numbers, schedules, duration and stops**
- 🧳 Filter by **cabin class** (economy, premium economy, business, first)
- 🚏 Filter by **number of stops** (nonstop, 1 stop, 2 stops, or any)
- 👨‍👩‍👧 Search for **multiple passengers** (adults, children, infants)
- 🌍 Choose your **currency, language and country**

---

### Input

You only need three things to get started: **where from**, **where to**, and **when**.

| Field | Description | Example |
|-------|-------------|---------|
| **From (origin)** | Departure airport code | `JFK` |
| **To (destination)** | Arrival airport code | `LAX` |
| **Departure date** | Outbound date (`YYYY-MM-DD`) | `2026-07-30` |
| **Return date** | Return date — leave empty for one-way | `2026-08-06` |
| **Adults / Children / Infants** | Number of passengers | `1` |
| **Cabin class** | Economy, Premium economy, Business, First | `Economy` |
| **Stops** | Any, Nonstop, 1 stop or fewer, 2 stops or fewer | `Any` |
| **Currency** | Currency for prices | `USD` |
| **Language / Country** | Locale for results | `en` / `us` |
| **Maximum results** | Limit how many flights to save | `50` |
| **Include vendor booking links** | Fetch airline/OTA booking URLs (extra API call per flight) | `false` |
| **Include price calendar** | Embed flexible-date prices in each flight record | `false` |
| **Calendar start / end date** | Custom window for the price calendar | optional |

> 💡 **Tip:** Airports are entered as their 3-letter codes (for example `JFK`, `LHR`, `DXB`, `SIN`). You can also paste a full Google Flights link into the **Google Flights link** field and the actor will read the route and dates from it automatically.

#### Example input

```json
{
  "origin": "JFK",
  "destination": "LHR",
  "departureDate": "2026-07-30",
  "returnDate": "2026-08-06",
  "adults": 1,
  "cabinClass": "economy",
  "stops": "nonstop",
  "currency": "USD"
}
````

***

### Output

Each result is one flight option. When **Include price calendar** is enabled, every flight record also includes a `priceCalendar` array with flexible-date prices for the same route.

```json
{
  "price": 285,
  "currency": "USD",
  "airlines": ["British Airways"],
  "primaryAirlineName": "British Airways",
  "resultTier": "best",
  "departureAirport": "JFK",
  "departureTime": "07:50",
  "departureDate": "2026-07-30",
  "arrivalAirport": "LHR",
  "arrivalTime": "19:45",
  "arrivalDate": "2026-07-30",
  "duration": "6h 55m",
  "stops": 0,
  "co2EmissionsGrams": 424000,
  "co2EmissionsTypicalGrams": 410000,
  "co2EmissionsDeltaPercent": -3,
  "emissionsTag": "lower",
  "bookingLink": "https://www.google.com/travel/flights/booking?tfs=...",
  "searchLink": "https://www.google.com/travel/flights?q=...",
  "departureToken": "W1siQkEiLCIyMDI2...",
  "travelAdvisories": [{ "title": "Travel restricted", "message": "..." }],
  "baggagePolicyLinks": [{ "airlineCode": "BA", "url": "https://..." }],
  "priceCalendar": [
    {
      "departureDate": "2026-08-01",
      "returnDate": null,
      "price": 209,
      "currency": "USD",
      "isLowPrice": true
    }
  ],
  "segments": [
    {
      "flightNumber": "BA 178",
      "airlineCode": "BA",
      "extensions": ["Average legroom (31 in)", "Wi-Fi"],
      "amenities": { "wifi": true, "power": true }
    }
  ],
  "layovers": [{ "airport": "ORD", "changeOfAirport": true, "duration": "2h 10m" }]
}
```

When **Include vendor booking links** is enabled, records also include `bookingOptions` (vendor fares with `bookingLink`, `googleClickLink`, `fareName`, `fareCode`) and `vendorBookingLink`.

For flights with stops, the `segments` array lists each leg of the journey and `layovers` describes each connection (airport, city and waiting time).

You can export the results as **JSON, CSV, Excel, HTML or XML** from the **Storage** tab, or pull them through the Apify API.

***

### Notes

- For **round-trip** searches, results show the available outbound flights together with the lowest total round-trip price — exactly as Google Flights presents them.
- Prices are provided by Google and can change at any time. Always confirm the final price with the airline or booking site before purchasing.
- This actor is not affiliated with or endorsed by Google.

***

### FAQ

**Which airports can I search?**
Any airport or metro area supported by Google Flights. Use the standard 3-letter airport code.

**Can I monitor prices automatically?**
Yes. Use Apify **Schedules** to run the actor on a recurring basis and combine it with integrations (email, Slack, webhooks) to get alerts when prices change.

**Do I need to configure anything else?**
No. Just enter your route and dates and run it.

# Actor input Schema

## `origin` (type: `string`):

Departure airport or city. Use a 3-letter airport code such as <b>JFK</b>, <b>LHR</b> or <b>DXB</b>.

## `destination` (type: `string`):

Arrival airport or city. Use a 3-letter airport code such as <b>LAX</b>, <b>CDG</b> or <b>SIN</b>.

## `departureDate` (type: `string`):

Date of the outbound flight in <b>YYYY-MM-DD</b> format.

## `returnDate` (type: `string`):

Date of the return flight in <b>YYYY-MM-DD</b> format. Leave empty for a one-way trip.

## `adults` (type: `integer`):

Number of adult passengers.

## `children` (type: `integer`):

Number of children (2-11 years).

## `infantsInSeat` (type: `integer`):

Number of infants occupying their own seat.

## `infantsOnLap` (type: `integer`):

Number of infants travelling on a lap.

## `cabinClass` (type: `string`):

Preferred travel class.

## `stops` (type: `string`):

Maximum number of stops.

## `currency` (type: `string`):

Currency for prices, e.g. <b>USD</b>, <b>EUR</b>, <b>GBP</b>, <b>INR</b>.

## `language` (type: `string`):

Two-letter language code for results, e.g. <b>en</b>.

## `country` (type: `string`):

Two-letter country code used for search context, e.g. <b>us</b>.

## `maxResults` (type: `integer`):

Limit the number of flights saved. Leave empty to save all results.

## `searchUrl` (type: `string`):

Alternatively, paste a full Google Flights link here and the actor will read the route and dates from it.

## `includeBookingOptions` (type: `boolean`):

When enabled, fetches airline and OTA booking links for each flight (one extra API call per result). The <b>bookingLink</b> field is always included without this option.

## `includePriceCalendar` (type: `boolean`):

When enabled, fetches flexible-date prices and embeds them in each flight record as a <b>priceCalendar</b> array.

## `calendarStartDate` (type: `string`):

Start of the price calendar window (<b>YYYY-MM-DD</b>). Defaults to 15 days before the departure date.

## `calendarEndDate` (type: `string`):

End of the price calendar window (<b>YYYY-MM-DD</b>). Defaults to 15 days after the departure date.

## Actor input object example

```json
{
  "origin": "JFK",
  "destination": "LAX",
  "departureDate": "2026-07-30",
  "returnDate": "2026-08-06",
  "adults": 1,
  "children": 0,
  "infantsInSeat": 0,
  "infantsOnLap": 0,
  "cabinClass": "economy",
  "stops": "any",
  "currency": "USD",
  "language": "en",
  "country": "us",
  "includeBookingOptions": false,
  "includePriceCalendar": false,
  "calendarStartDate": "2026-07-01",
  "calendarEndDate": "2026-08-15"
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "origin": "JFK",
    "destination": "LAX",
    "departureDate": "2026-07-30",
    "adults": 1
};

// Run the Actor and wait for it to finish
const run = await client.actor("curious_coder/google-flights-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "origin": "JFK",
    "destination": "LAX",
    "departureDate": "2026-07-30",
    "adults": 1,
}

# Run the Actor and wait for it to finish
run = client.actor("curious_coder/google-flights-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "origin": "JFK",
  "destination": "LAX",
  "departureDate": "2026-07-30",
  "adults": 1
}' |
apify call curious_coder/google-flights-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=curious_coder/google-flights-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Google Flights Scraper",
        "description": "Search Google Flights for any route and export prices, airlines, times, stops and more.",
        "version": "1.0",
        "x-build-id": "3mW1FSpSthJvnjX4z"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/curious_coder~google-flights-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-curious_coder-google-flights-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/curious_coder~google-flights-scraper/runs": {
            "post": {
                "operationId": "runs-sync-curious_coder-google-flights-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/curious_coder~google-flights-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-curious_coder-google-flights-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "origin": {
                        "title": "From (origin)",
                        "type": "string",
                        "description": "Departure airport or city. Use a 3-letter airport code such as <b>JFK</b>, <b>LHR</b> or <b>DXB</b>."
                    },
                    "destination": {
                        "title": "To (destination)",
                        "type": "string",
                        "description": "Arrival airport or city. Use a 3-letter airport code such as <b>LAX</b>, <b>CDG</b> or <b>SIN</b>."
                    },
                    "departureDate": {
                        "title": "Departure date",
                        "type": "string",
                        "description": "Date of the outbound flight in <b>YYYY-MM-DD</b> format."
                    },
                    "returnDate": {
                        "title": "Return date (optional)",
                        "type": "string",
                        "description": "Date of the return flight in <b>YYYY-MM-DD</b> format. Leave empty for a one-way trip."
                    },
                    "adults": {
                        "title": "Adults",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Number of adult passengers.",
                        "default": 1
                    },
                    "children": {
                        "title": "Children",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Number of children (2-11 years).",
                        "default": 0
                    },
                    "infantsInSeat": {
                        "title": "Infants in seat",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Number of infants occupying their own seat.",
                        "default": 0
                    },
                    "infantsOnLap": {
                        "title": "Infants on lap",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Number of infants travelling on a lap.",
                        "default": 0
                    },
                    "cabinClass": {
                        "title": "Cabin class",
                        "enum": [
                            "economy",
                            "premium economy",
                            "business",
                            "first"
                        ],
                        "type": "string",
                        "description": "Preferred travel class.",
                        "default": "economy"
                    },
                    "stops": {
                        "title": "Stops",
                        "enum": [
                            "any",
                            "nonstop",
                            "one",
                            "two"
                        ],
                        "type": "string",
                        "description": "Maximum number of stops.",
                        "default": "any"
                    },
                    "currency": {
                        "title": "Currency",
                        "type": "string",
                        "description": "Currency for prices, e.g. <b>USD</b>, <b>EUR</b>, <b>GBP</b>, <b>INR</b>.",
                        "default": "USD"
                    },
                    "language": {
                        "title": "Language",
                        "type": "string",
                        "description": "Two-letter language code for results, e.g. <b>en</b>.",
                        "default": "en"
                    },
                    "country": {
                        "title": "Country",
                        "type": "string",
                        "description": "Two-letter country code used for search context, e.g. <b>us</b>.",
                        "default": "us"
                    },
                    "maxResults": {
                        "title": "Maximum results",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Limit the number of flights saved. Leave empty to save all results."
                    },
                    "searchUrl": {
                        "title": "Google Flights link (optional)",
                        "type": "string",
                        "description": "Alternatively, paste a full Google Flights link here and the actor will read the route and dates from it."
                    },
                    "includeBookingOptions": {
                        "title": "Include vendor booking links",
                        "type": "boolean",
                        "description": "When enabled, fetches airline and OTA booking links for each flight (one extra API call per result). The <b>bookingLink</b> field is always included without this option.",
                        "default": false
                    },
                    "includePriceCalendar": {
                        "title": "Include price calendar",
                        "type": "boolean",
                        "description": "When enabled, fetches flexible-date prices and embeds them in each flight record as a <b>priceCalendar</b> array.",
                        "default": false
                    },
                    "calendarStartDate": {
                        "title": "Calendar start date (optional)",
                        "type": "string",
                        "description": "Start of the price calendar window (<b>YYYY-MM-DD</b>). Defaults to 15 days before the departure date."
                    },
                    "calendarEndDate": {
                        "title": "Calendar end date (optional)",
                        "type": "string",
                        "description": "End of the price calendar window (<b>YYYY-MM-DD</b>). Defaults to 15 days after the departure date."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
