# Audio Transcriber — Deepgram Nova-3 Speech-to-Text (`kaz_kakyo/audio-transcriber`) Actor

Transcribe audio and video file URLs with Deepgram Nova-3. Zero setup at $0.01/min — or bring your own Deepgram key and pay $0.004/min. Speaker diarization, SRT subtitles, summaries, language detection.

- **URL**: https://apify.com/kaz\_kakyo/audio-transcriber.md
- **Developed by:** [Heim AI](https://apify.com/kaz_kakyo) (community)
- **Categories:** AI, Videos, Automation
- **Stats:** 11 total users, 8 monthly users, 96.3% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $10.00 / 1,000 audio minute (zero setup)s

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

## Audio Transcriber — Deepgram Nova-3 Speech-to-Text

**Transcribe any audio or video file URL with Deepgram Nova-3. Zero setup at $0.01/min — or bring your own free Deepgram key and pay just $0.004/min.** Speaker diarization, SRT subtitles, summaries, word timestamps, and automatic language detection. Runs out of the box: press Start and the sample file transcribes.

### Why this one

- **Cheapest way to run Deepgram on Apify.** Zero-setup mode is $0.01 per audio minute, all-in ($0.60/hour). With your own Deepgram key (free, $200 starting credit, no card) the actor fee drops to $0.004/min — you pay Deepgram's wholesale ~$0.0043/min directly, about $0.50/hour total.
- **Nova-3, not a black box.** You choose the model (`nova-3`, `nova-2`, `whisper-large`), the language, and exactly which extras to compute. No hidden engine, no quality lottery.
- **Built for pipelines and agents.** Feed it a list of URLs, get one clean JSON row per file. Chain it after any scraper that outputs media links, schedule it, or call it from your agent via MCP.
- **HTTP-only and light.** Deepgram fetches your URL directly — nothing is downloaded through the actor, so runs are fast and there are no proxy or compute surcharges.

### What it does

Give it direct links to audio or video files (`mp3`, `wav`, `m4a`, `flac`, `ogg`, `opus`, `mp4`, `mov`, `webm`, `mkv` — up to 2 GB each). For every file you get:

| Field | Always / opt-in | Description |
|---|---|---|
| `transcript` | always | Full text, smart-formatted, paragraph breaks |
| `durationSeconds`, `minutesBilled` | always | Audio length and what you were charged |
| `language`, `confidence`, `model` | always | Detected/requested language, overall confidence |
| `summary` | opt-in | Short abstract summary (English) |
| `speakerTranscript` | with diarization | `Speaker 0: ...` labeled dialogue |
| `srt` | opt-in | Ready-to-save subtitle file content |
| `utterances` | opt-in | Timestamped spoken segments with speakers |
| `words` | opt-in | Per-word timing and confidence |

Failed files become `{ "type": "error", "url", "error" }` rows — one bad link never kills the batch, and you are never charged for failures. Skipped inputs (invalid URLs, duplicates, anything past the 500-file cap, or files left over after your run's charge limit) are also recorded as rows, so your input list always reconciles against the dataset. Silent or speech-free audio that decodes successfully is billed by duration like any other file — Deepgram processes the full recording either way.

### Pricing

| Event | Price | When |
|---|---|---|
| Audio minute (zero-setup) | **$0.010** | No key provided — transcription cost included |
| Audio minute (your Deepgram key) | **$0.004** | `deepgramApiKey` set — you pay Deepgram directly at cost |
| Actor start | $0.00005 | Per run |

Minutes are rounded up per file. A 90-second podcast clip = 2 minutes = $0.02 (zero-setup). A 1-hour meeting = $0.60 zero-setup, or ~$0.50 all-in with your own key.

**Worth knowing:** the bring-your-own-key discount pays for itself fast. Deepgram gives new accounts $200 of free credit with no card — that alone covers ~775 hours of Nova-3 pre-recorded transcription before you pay Deepgram anything.

### Quick start

```json
{
    "audioUrls": ["https://example.com/interview.mp3"],
    "diarize": true,
    "includeSrt": true
}
````

Podcast pipeline (schedule it): scrape episode URLs with any RSS/podcast actor, feed the enclosure URLs here, get transcripts + summaries into your dataset every morning.

Meeting archive: point it at your recording exports (any public or signed URL works), turn on diarization and utterances, index the output in your search tool.

Agent use: this actor is MCP-ready — an agent can pass a media URL and read back the transcript JSON in one call.

### Input reference

- **`audioUrls`** (required) — direct file links. Not YouTube/TikTok page URLs; use a media-downloader actor first if you need those.
- **`deepgramApiKey`** — optional. Stored encrypted, sent only to `api.deepgram.com`, never logged.
- **`model`** — `nova-3` (default), `nova-2`, `whisper-large`.
- **`language`** — BCP-47 code (`en`, `es`, `zh`, ...). Use `multi` with nova-3 for code-switched audio, or set `detectLanguage` and forget about it.
- **`diarize`, `smartFormat`, `paragraphs`, `summarize`, `includeSrt`, `includeUtterances`, `includeWords`** — feature toggles, all documented in the input form.
- **`keyterms`** — nova-3 keyterm prompting: pass product names, jargon, or speaker names to boost their recognition.

### FAQ

**Do I need a Deepgram account?** No — zero-setup mode works immediately. Bring a key only if you want the lower rate.

**What audio quality/languages are supported?** Nova-3 supports 30+ languages and handles noisy, multi-speaker, real-world audio; `whisper-large` covers 90+ languages for rarer cases.

**Is my audio stored?** The actor never downloads or stores your media — Deepgram fetches the URL, returns JSON, and the actor keeps only the transcript in your dataset.

**File limits?** 2 GB per file, up to 500 files per run, ~10 minutes max processing per file (Deepgram's cap). Batches run 4 files at a time (2 for Whisper, which has stricter concurrency limits). Long runs are checkpointed — a platform migration resumes where it left off instead of re-billing finished files.

**Why did my URL fail?** It must be a direct, publicly reachable media file (or signed URL). Page URLs (YouTube, Spotify, Drive share pages) are not media files.

***

*Found this useful? A review on the [actor page](https://apify.com/kaz_kakyo/audio-transcriber) helps other people find it — and tells me what to build next. Hit a problem? [Open an issue](https://apify.com/kaz_kakyo/audio-transcriber/issues) and I'll fix it fast.*

### Telemetry

Each run records one anonymous telemetry event to the developer's own storage: a salted hash of the caller account ID (never the raw ID), the run origin (e.g. web console vs API), and a timestamp. No inputs, results, or personal data are collected - this only measures adoption (distinct and returning users).

# Actor input Schema

## `audioUrls` (type: `array`):

Direct https links to audio or video files (mp3, wav, m4a, flac, ogg, opus, mp4, mov, webm, mkv — up to 2 GB each). One transcript per file. Max 500 files per run.

## `deepgramApiKey` (type: `string`):

Leave empty for zero-setup transcription at $0.01/min. Or bring your own free Deepgram key (console.deepgram.com — $200 credit, no card) and pay only $0.004/min here plus Deepgram's wholesale ~$0.0043/min directly. Stored encrypted, sent only to api.deepgram.com.

## `model` (type: `string`):

`nova-3` is Deepgram's flagship (fastest, most accurate, multilingual). `whisper-large` for rare languages.

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

BCP-47 code, e.g. `en`, `es`, `zh`, `de`. Use `multi` with nova-3 for code-switched audio. Leave empty for English, or enable language detection below.

## `detectLanguage` (type: `boolean`):

Identify the dominant language of each file and transcribe in it. Overrides the language field.

## `diarize` (type: `boolean`):

Label who said what. Adds a `speakerTranscript` field (`Speaker 0: ...`) and speaker labels in SRT/utterances/words.

## `smartFormat` (type: `boolean`):

Punctuation plus formatted dates, numbers, currency, phone numbers, emails.

## `paragraphs` (type: `boolean`):

Return the transcript split into readable paragraphs instead of one wall of text.

## `summarize` (type: `boolean`):

Add a short abstract summary of each file (English audio only).

## `includeSrt` (type: `boolean`):

Add a ready-to-use `.srt` subtitle string (with speaker labels when diarization is on).

## `includeUtterances` (type: `boolean`):

Add an `utterances` array: start/end time, speaker, and text per spoken segment.

## `includeWords` (type: `boolean`):

Add a `words` array with per-word timing and confidence. Large output for long audio.

## `keyterms` (type: `array`):

Domain terms, names, or jargon to boost recognition accuracy for (keyterm prompting).

## Actor input object example

```json
{
  "audioUrls": [
    "https://dpgr.am/spacewalk.wav"
  ],
  "model": "nova-3",
  "detectLanguage": false,
  "diarize": false,
  "smartFormat": true,
  "paragraphs": true,
  "summarize": false,
  "includeSrt": false,
  "includeUtterances": false,
  "includeWords": false
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# 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 = {
    "audioUrls": [
        "https://dpgr.am/spacewalk.wav"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("kaz_kakyo/audio-transcriber").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 = { "audioUrls": ["https://dpgr.am/spacewalk.wav"] }

# Run the Actor and wait for it to finish
run = client.actor("kaz_kakyo/audio-transcriber").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 '{
  "audioUrls": [
    "https://dpgr.am/spacewalk.wav"
  ]
}' |
apify call kaz_kakyo/audio-transcriber --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Audio Transcriber — Deepgram Nova-3 Speech-to-Text",
        "description": "Transcribe audio and video file URLs with Deepgram Nova-3. Zero setup at $0.01/min — or bring your own Deepgram key and pay $0.004/min. Speaker diarization, SRT subtitles, summaries, language detection.",
        "version": "0.0",
        "x-build-id": "0iQPNc2cGjaBOJ2NO"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/kaz_kakyo~audio-transcriber/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-kaz_kakyo-audio-transcriber",
                "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/kaz_kakyo~audio-transcriber/runs": {
            "post": {
                "operationId": "runs-sync-kaz_kakyo-audio-transcriber",
                "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/kaz_kakyo~audio-transcriber/run-sync": {
            "post": {
                "operationId": "run-sync-kaz_kakyo-audio-transcriber",
                "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",
                "required": [
                    "audioUrls"
                ],
                "properties": {
                    "audioUrls": {
                        "title": "Audio / video file URLs",
                        "minItems": 1,
                        "type": "array",
                        "description": "Direct https links to audio or video files (mp3, wav, m4a, flac, ogg, opus, mp4, mov, webm, mkv — up to 2 GB each). One transcript per file. Max 500 files per run.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "deepgramApiKey": {
                        "title": "Deepgram API key (optional — cuts the price to $0.004/min)",
                        "type": "string",
                        "description": "Leave empty for zero-setup transcription at $0.01/min. Or bring your own free Deepgram key (console.deepgram.com — $200 credit, no card) and pay only $0.004/min here plus Deepgram's wholesale ~$0.0043/min directly. Stored encrypted, sent only to api.deepgram.com."
                    },
                    "model": {
                        "title": "Model",
                        "enum": [
                            "nova-3",
                            "nova-2",
                            "whisper-large"
                        ],
                        "type": "string",
                        "description": "`nova-3` is Deepgram's flagship (fastest, most accurate, multilingual). `whisper-large` for rare languages.",
                        "default": "nova-3"
                    },
                    "language": {
                        "title": "Language",
                        "type": "string",
                        "description": "BCP-47 code, e.g. `en`, `es`, `zh`, `de`. Use `multi` with nova-3 for code-switched audio. Leave empty for English, or enable language detection below."
                    },
                    "detectLanguage": {
                        "title": "Detect language automatically",
                        "type": "boolean",
                        "description": "Identify the dominant language of each file and transcribe in it. Overrides the language field.",
                        "default": false
                    },
                    "diarize": {
                        "title": "Speaker diarization",
                        "type": "boolean",
                        "description": "Label who said what. Adds a `speakerTranscript` field (`Speaker 0: ...`) and speaker labels in SRT/utterances/words.",
                        "default": false
                    },
                    "smartFormat": {
                        "title": "Smart formatting",
                        "type": "boolean",
                        "description": "Punctuation plus formatted dates, numbers, currency, phone numbers, emails.",
                        "default": true
                    },
                    "paragraphs": {
                        "title": "Paragraph breaks",
                        "type": "boolean",
                        "description": "Return the transcript split into readable paragraphs instead of one wall of text.",
                        "default": true
                    },
                    "summarize": {
                        "title": "Summary",
                        "type": "boolean",
                        "description": "Add a short abstract summary of each file (English audio only).",
                        "default": false
                    },
                    "includeSrt": {
                        "title": "SRT subtitles",
                        "type": "boolean",
                        "description": "Add a ready-to-use `.srt` subtitle string (with speaker labels when diarization is on).",
                        "default": false
                    },
                    "includeUtterances": {
                        "title": "Utterance timestamps",
                        "type": "boolean",
                        "description": "Add an `utterances` array: start/end time, speaker, and text per spoken segment.",
                        "default": false
                    },
                    "includeWords": {
                        "title": "Word-level timestamps",
                        "type": "boolean",
                        "description": "Add a `words` array with per-word timing and confidence. Large output for long audio.",
                        "default": false
                    },
                    "keyterms": {
                        "title": "Key terms (nova-3 only)",
                        "type": "array",
                        "description": "Domain terms, names, or jargon to boost recognition accuracy for (keyterm prompting).",
                        "items": {
                            "type": "string"
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
