# YC Companies Scraper | $5/1K | Founders, Socials, Batches (`apivault_labs/yc-companies-scraper`) Actor

Scrape Y Combinator companies directory: name, batch, industry, team size, website, LinkedIn, Twitter, founders with bios. 5000+ startups. Official public data source.

- **URL**: https://apify.com/apivault\_labs/yc-companies-scraper.md
- **Developed by:** [Apivault Labs](https://apify.com/apivault_labs) (community)
- **Categories:** Business, Lead generation, Marketing
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 company scrapeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## YC Companies Scraper

Scrape the Y Combinator companies directory. 5000+ startups including Airbnb, Stripe, Dropbox, Instacart, DoorDash, Reddit, GitLab and every other YC alum.

### Pricing

**$5 per 1000 companies** — pay-per-event on every record pushed to the dataset.

### Input modes

#### Filter search (default)

```json
{
    "batches": ["Winter 2024", "Summer 2024"],
    "industries": ["B2B"],
    "isHiring": true,
    "maxResults": 100,
    "fullDetails": true
}
````

Available filters:

- `query` — free-text search
- `batches` — `"Winter 2024"`, `"Summer 2024"`, `"Spring 2025"`, etc.
- `industries` — `"B2B"`, `"Consumer"`, `"Fintech"`, `"Healthcare"`, etc.
- `regions` — `"United States of America"`, `"Europe"`, `"Asia"`, etc.
- `statuses` — `"Active"`, `"Public"`, `"Acquired"`, `"Inactive"`
- `tags` — `"AI"`, `"Marketplace"`, `"Developer Tools"`, `"Crypto"`
- `isHiring` — only companies hiring now
- `topCompaniesOnly` — only YC "Top Companies" (billion-dollar club)

#### Direct slugs

```json
{
    "slugs": ["airbnb", "stripe", "dropbox"],
    "fullDetails": true
}
```

### Output fields

Each record includes:

- **slug**, **name**, **url**, **oneLiner**, **website**
- **batch** (Winter 2009), **batchCode** (W09)
- **industry**, **subindustry**, **industries** array
- **location**, **city**, **country**, **regions**
- **teamSize** — employee count
- **status** — Active / Public / Acquired / Inactive
- **stage** — Seed / Growth
- **isHiring**, **isTopCompany** — booleans
- **linkedinUrl**, **twitterUrl**, **facebookUrl**, **githubUrl**, **crunchbaseUrl**
- **tags** — array
- **logoUrl**
- **launchedAt**, **yearFounded**

With `fullDetails: true` (recommended):

- **longDescription** — full "about" text
- **founders** — array of `{name, title, bio, linkedinUrl, twitterUrl}`

### Use cases

- **B2B lead generation** — every YC founder is a potential buyer/partner. All LinkedIn URLs extracted.
- **VC/Accelerator research** — track batch composition, industry shifts
- **Talent pipeline** — filter `isHiring: true` to find roles
- **Competitive intel** — scrape your competitor's batch mates
- **Journalism / analytics** — YC is 5000+ structured datapoints

### How it works

1. Fetches Algolia API credentials dynamically from `/companies` page (YC rotates these keys)
2. Paginated search via Algolia (100 hits/page, up to 5894 total)
3. Optional per-company `/companies/{slug}` fetch for founder + socials data

No login, no API key, no Thunderbit. Pure direct API.

# Actor input Schema

## `query` (type: `string`):

Optional free-text search across company names and descriptions. Leave empty to browse by filters.

## `batches` (type: `array`):

YC batches in readable format. Examples: 'Summer 2024', 'Winter 2024', 'Spring 2025', 'Fall 2024'. Leave empty for all batches.

## `industries` (type: `array`):

Top-level industries. Examples: 'B2B', 'Consumer', 'Fintech', 'Healthcare', 'Industrials', 'Real Estate and Construction', 'Government'. Leave empty for all.

## `regions` (type: `array`):

Geographic regions. Examples: 'United States of America', 'America / Canada', 'Europe', 'Asia', 'Latin America', 'Africa', 'Remote'. Leave empty for all.

## `statuses` (type: `array`):

Company lifecycle status. Examples: 'Active', 'Public', 'Acquired', 'Inactive'.

## `tags` (type: `array`):

Topic tags. Examples: 'Marketplace', 'AI', 'SaaS', 'Developer Tools', 'Climate', 'Crypto', 'API'.

## `isHiring` (type: `boolean`):

If enabled, only return companies that have open roles on Work at a Startup.

## `topCompaniesOnly` (type: `boolean`):

If enabled, only return YC 'Top Companies' (billion-dollar and high-growth).

## `slugs` (type: `array`):

If set, skip the search/filter and scrape these exact company slugs instead (e.g. \['airbnb', 'stripe', 'dropbox']). Always includes full detail.

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

Stop after fetching this many companies (0 = all matching, up to 5894 total). Each Algolia page is 40 hits.

## `fullDetails` (type: `boolean`):

When enabled, makes a second request per company to get founders (name, bio, linkedin, twitter), long description, and all social links. Slower but way more data.

## `extractIndustry` (type: `boolean`):

Include industry classification.

## `extractBatch` (type: `boolean`):

Include YC batch (Summer 2024 etc.) and short code (S24).

## `extractLocation` (type: `boolean`):

Include city, country, and regions array.

## `extractTeamSize` (type: `boolean`):

Include team\_size (employee count) when set.

## `extractStatus` (type: `boolean`):

Include status (Active/Public/Acquired) and stage (Seed/Growth).

## `extractSocials` (type: `boolean`):

Include LinkedIn, Twitter, Facebook, GitHub URLs. Full socials require fullDetails=true.

## `extractTags` (type: `boolean`):

Include topic tags array.

## `extractFounders` (type: `boolean`):

Include founders array with name, bio, LinkedIn, Twitter. Requires fullDetails=true.

## `extractLongDescription` (type: `boolean`):

Include long description / about text. Requires fullDetails=true.

## `extractLogo` (type: `boolean`):

Include company logo URL.

## `maxConcurrency` (type: `integer`):

Parallel HTTP requests for detail fetching. 5-10 works well, YC tolerates it.

## `timeout` (type: `integer`):

HTTP timeout per request.

## Actor input object example

```json
{
  "query": "",
  "batches": [],
  "industries": [],
  "regions": [],
  "statuses": [],
  "tags": [],
  "isHiring": false,
  "topCompaniesOnly": false,
  "slugs": [],
  "maxResults": 100,
  "fullDetails": true,
  "extractIndustry": true,
  "extractBatch": true,
  "extractLocation": true,
  "extractTeamSize": true,
  "extractStatus": true,
  "extractSocials": true,
  "extractTags": true,
  "extractFounders": true,
  "extractLongDescription": true,
  "extractLogo": true,
  "maxConcurrency": 5,
  "timeout": 30
}
```

# 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 = {
    "batches": [],
    "industries": [],
    "regions": [],
    "statuses": [],
    "tags": [],
    "slugs": []
};

// Run the Actor and wait for it to finish
const run = await client.actor("apivault_labs/yc-companies-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 = {
    "batches": [],
    "industries": [],
    "regions": [],
    "statuses": [],
    "tags": [],
    "slugs": [],
}

# Run the Actor and wait for it to finish
run = client.actor("apivault_labs/yc-companies-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 '{
  "batches": [],
  "industries": [],
  "regions": [],
  "statuses": [],
  "tags": [],
  "slugs": []
}' |
apify call apivault_labs/yc-companies-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "YC Companies Scraper | $5/1K | Founders, Socials, Batches",
        "description": "Scrape Y Combinator companies directory: name, batch, industry, team size, website, LinkedIn, Twitter, founders with bios. 5000+ startups. Official public data source.",
        "version": "1.0",
        "x-build-id": "I6lG9X07z3mRvAvXU"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/apivault_labs~yc-companies-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-apivault_labs-yc-companies-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/apivault_labs~yc-companies-scraper/runs": {
            "post": {
                "operationId": "runs-sync-apivault_labs-yc-companies-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/apivault_labs~yc-companies-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-apivault_labs-yc-companies-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": {
                    "query": {
                        "title": "Keyword search",
                        "type": "string",
                        "description": "Optional free-text search across company names and descriptions. Leave empty to browse by filters.",
                        "default": ""
                    },
                    "batches": {
                        "title": "Filter by batch(es)",
                        "type": "array",
                        "description": "YC batches in readable format. Examples: 'Summer 2024', 'Winter 2024', 'Spring 2025', 'Fall 2024'. Leave empty for all batches.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "industries": {
                        "title": "Filter by industry",
                        "type": "array",
                        "description": "Top-level industries. Examples: 'B2B', 'Consumer', 'Fintech', 'Healthcare', 'Industrials', 'Real Estate and Construction', 'Government'. Leave empty for all.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "regions": {
                        "title": "Filter by region",
                        "type": "array",
                        "description": "Geographic regions. Examples: 'United States of America', 'America / Canada', 'Europe', 'Asia', 'Latin America', 'Africa', 'Remote'. Leave empty for all.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "statuses": {
                        "title": "Filter by status",
                        "type": "array",
                        "description": "Company lifecycle status. Examples: 'Active', 'Public', 'Acquired', 'Inactive'.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "tags": {
                        "title": "Filter by tag",
                        "type": "array",
                        "description": "Topic tags. Examples: 'Marketplace', 'AI', 'SaaS', 'Developer Tools', 'Climate', 'Crypto', 'API'.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "isHiring": {
                        "title": "Only hiring companies",
                        "type": "boolean",
                        "description": "If enabled, only return companies that have open roles on Work at a Startup.",
                        "default": false
                    },
                    "topCompaniesOnly": {
                        "title": "Only top companies",
                        "type": "boolean",
                        "description": "If enabled, only return YC 'Top Companies' (billion-dollar and high-growth).",
                        "default": false
                    },
                    "slugs": {
                        "title": "Exact company slugs (overrides search)",
                        "type": "array",
                        "description": "If set, skip the search/filter and scrape these exact company slugs instead (e.g. ['airbnb', 'stripe', 'dropbox']). Always includes full detail.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxResults": {
                        "title": "Max companies to fetch",
                        "minimum": 0,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Stop after fetching this many companies (0 = all matching, up to 5894 total). Each Algolia page is 40 hits.",
                        "default": 100
                    },
                    "fullDetails": {
                        "title": "Fetch founders + full description",
                        "type": "boolean",
                        "description": "When enabled, makes a second request per company to get founders (name, bio, linkedin, twitter), long description, and all social links. Slower but way more data.",
                        "default": true
                    },
                    "extractIndustry": {
                        "title": "Industry & Subindustry",
                        "type": "boolean",
                        "description": "Include industry classification.",
                        "default": true
                    },
                    "extractBatch": {
                        "title": "Batch",
                        "type": "boolean",
                        "description": "Include YC batch (Summer 2024 etc.) and short code (S24).",
                        "default": true
                    },
                    "extractLocation": {
                        "title": "Location",
                        "type": "boolean",
                        "description": "Include city, country, and regions array.",
                        "default": true
                    },
                    "extractTeamSize": {
                        "title": "Team Size",
                        "type": "boolean",
                        "description": "Include team_size (employee count) when set.",
                        "default": true
                    },
                    "extractStatus": {
                        "title": "Status & Stage",
                        "type": "boolean",
                        "description": "Include status (Active/Public/Acquired) and stage (Seed/Growth).",
                        "default": true
                    },
                    "extractSocials": {
                        "title": "Social Links",
                        "type": "boolean",
                        "description": "Include LinkedIn, Twitter, Facebook, GitHub URLs. Full socials require fullDetails=true.",
                        "default": true
                    },
                    "extractTags": {
                        "title": "Tags",
                        "type": "boolean",
                        "description": "Include topic tags array.",
                        "default": true
                    },
                    "extractFounders": {
                        "title": "Founders (fullDetails only)",
                        "type": "boolean",
                        "description": "Include founders array with name, bio, LinkedIn, Twitter. Requires fullDetails=true.",
                        "default": true
                    },
                    "extractLongDescription": {
                        "title": "Long Description (fullDetails only)",
                        "type": "boolean",
                        "description": "Include long description / about text. Requires fullDetails=true.",
                        "default": true
                    },
                    "extractLogo": {
                        "title": "Logo",
                        "type": "boolean",
                        "description": "Include company logo URL.",
                        "default": true
                    },
                    "maxConcurrency": {
                        "title": "Max Concurrency",
                        "minimum": 1,
                        "maximum": 20,
                        "type": "integer",
                        "description": "Parallel HTTP requests for detail fetching. 5-10 works well, YC tolerates it.",
                        "default": 5
                    },
                    "timeout": {
                        "title": "Timeout (seconds)",
                        "minimum": 5,
                        "maximum": 120,
                        "type": "integer",
                        "description": "HTTP timeout per request.",
                        "default": 30
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
