# Visidarbi.lv Scraper — Latvia Job Listings (`unfenced-group/visidarbi-lv-scraper`) Actor

Scrapes job listings from Visidarbi.lv, Latvia's largest job portal and aggregator. Supports keyword and location filters, pagination, full description fetching, and cross-run repost detection.

- **URL**: https://apify.com/unfenced-group/visidarbi-lv-scraper.md
- **Developed by:** [Unfenced Group](https://apify.com/unfenced-group) (community)
- **Categories:** Jobs
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.49 / 1,000 result items

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

## Visidarbi.lv Scraper

![Visidarbi.lv Scraper](https://i.imgur.com/GeOXmVP.png)

Scrape job listings from [Visidarbi.lv](https://www.visidarbi.lv) — Latvia's largest job aggregator with 8,000–12,000 active listings collected daily from all major Latvian job portals. Filter by keyword and location. No API key required. **HTTP-only — fast and cost-efficient.**

---

### Why this scraper?

#### 🔄 Repost detection keeps your data clean
Job aggregators are especially prone to duplicate listings — the same vacancy appears from multiple source portals simultaneously. This scraper tracks jobs across runs using a 90-day index. The `isRepost` field flags duplicates, `originalPublishDate` shows when the vacancy first appeared, and `originalUrl` links to the first occurrence. Set `skipReposts: true` to filter them out entirely.

#### 💰 Structured salary data — monthly and hourly
Visidarbi.lv aggregates salary information from all source portals in a consistent format. The scraper returns `salaryMin`, `salaryMax`, `salaryCurrency` (EUR), and `salaryPeriod` (`MONTH` or `HOUR`) as structured numeric fields — no regex parsing needed in your pipeline. Raw salary text (e.g. `"1 200 - 1 800 (gross)"`) is also preserved in `salaryText`.

#### 📄 Three description formats
When fetching the full job description, each listing is returned in three formats simultaneously:

| Field | Format | Use case |
|---|---|---|
| `descriptionHtml` | Raw HTML | Display in web apps |
| `descriptionText` | Plain text | Full-text search, keyword extraction |
| `descriptionMarkdown` | Markdown | RAG pipelines, LLM agents |

#### 🌍 Covers all of Latvia — including regional filters
Filter listings by any Latvian region or city: `riga`, `daugavpils-and-region`, `vidzeme`, `zemgale`, `kurzeme`, `latgale`, or use `latvia` to get nationwide results. International postings (Netherlands, Germany, Norway, Sweden) are available under `abroad`.

#### ⏱️ Date filter removes stale listings automatically
Set `daysOld` to only retrieve vacancies posted within a specific window. Useful for daily feed pipelines — set `daysOld: 1` and run on a schedule to get only fresh postings each day.

#### 🔗 Custom start URLs for targeted crawling
Bypass the standard filters and provide any Visidarbi.lv search or category URL directly via `startUrls`. Useful for bookmarked searches, specific employer pages, or category URLs not covered by the keyword/location inputs.

---

### Input parameters

| Parameter | Type | Description | Default |
|---|---|---|---|
| `keyword` | string | Job title or keyword, e.g. `"programmētājs"`, `"driver"`, `"nurse"` | `""` |
| `location` | string | Location slug, e.g. `"riga"`, `"latvia"`, `"daugavpils-and-region"`, `"abroad"` | `"latvia"` |
| `maxItems` | integer | Maximum number of results to return | `100` |
| `daysOld` | integer | Only return listings posted within this many days. `0` = no limit | `0` |
| `skipReposts` | boolean | Skip listings seen in previous runs (90-day cross-run deduplication) | `false` |
| `fetchDetails` | boolean | Fetch the detail page for each listing to retrieve the full description. Increases run time | `true` |
| `startUrls` | array | Custom Visidarbi.lv start URLs. Overrides `keyword` and `location` when set | `[]` |
| `proxyConfiguration` | object | Proxy settings. Defaults to Apify AUTO proxy | AUTO |

---

### Output schema

```json
{
    "id":                   "69611efd11751",
    "url":                  "https://www.visidarbi.lv/en/job-ad/programmers/69611efd11751",
    "title":                "PHP Developer",
    "company":              "Acme Tech SIA",
    "location":             "Riga",
    "locationRegion":       null,
    "salaryMin":            2500,
    "salaryMax":            3500,
    "salaryCurrency":       "EUR",
    "salaryPeriod":         "MONTH",
    "salaryText":           "2 500 - 3 500 (gross)",
    "publishDate":          "3 hours ago",
    "publishDateISO":       "2026-04-24",
    "deadline":             "2026-05-15",
    "externalSource":       "cv.lv",
    "contractType":         "Full time",
    "descriptionHtml":      "<p>We are looking for an experienced PHP Developer...</p>",
    "descriptionText":      "We are looking for an experienced PHP Developer...",
    "descriptionMarkdown":  "We are looking for an experienced PHP Developer...",
    "contentHash":          "a3f8c2d1e4b56789",
    "summary":              "We are looking for an experienced PHP Developer to join our growing team in Riga. You will work on high-traffic web applications...",
    "source":               "visidarbi.lv",
    "scrapedAt":            "2026-04-24T10:15:32.000Z",
    "isRepost":             false,
    "originalPublishDate":  null,
    "originalUrl":          null
}
````

**Always present fields:** `id`, `url`, `title`, `company`, `location`, `salaryText`, `publishDate`, `publishDateISO`, `source`, `scrapedAt`, `isRepost`, `originalPublishDate`, `originalUrl`, `contentHash`.

**Populated when `fetchDetails: true`:** `descriptionHtml`, `descriptionText`, `descriptionMarkdown`, `summary`, `contractType`, `deadline`, `externalSource`.

**May be `null`:** `salaryMin`, `salaryMax`, `salaryCurrency`, `salaryPeriod` (not all employers publish salary), `locationRegion`, `deadline`, `externalSource`, `contractType`.

***

### Examples

**Daily feed — all new Latvian jobs in the last 24 hours:**

```json
{
    "keyword": "",
    "location": "latvia",
    "maxItems": 500,
    "daysOld": 1,
    "skipReposts": true
}
```

**IT jobs in Riga:**

```json
{
    "keyword": "developer",
    "location": "riga",
    "maxItems": 100,
    "fetchDetails": true
}
```

**Driving and logistics — nationwide:**

```json
{
    "keyword": "driver",
    "location": "latvia",
    "maxItems": 200,
    "daysOld": 7,
    "skipReposts": true
}
```

**Custom URL — jobs abroad (Netherlands / Germany):**

```json
{
    "startUrls": [
        { "url": "https://www.visidarbi.lv/en/job-ads/where:abroad" }
    ],
    "maxItems": 100
}
```

***

### 💰 Pricing

**$1.49 per 1,000 results** — you only pay for successfully retrieved job listings. Failed retries and filtered reposts are never charged.

| Results | Cost |
|---|---|
| 100 | ~$0.15 |
| 1,000 | ~$1.49 |
| 10,000 | ~$14.90 |
| 100,000 | ~$149.00 |

> Flat-rate alternatives typically charge $29–$49/month regardless of usage. At 10,000 results/month, this scraper costs significantly less with no commitment.

Use the **Max results** cap in the input to control your spend exactly.

***

### Performance

| Run | Time |
|---|---|
| 100 listings (with details) | ~2 min |
| 1,000 listings (with details) | ~15 min |
| 5,000 listings (with details) | ~60 min |
| 10,000 listings (list only) | ~20 min |

> Set `fetchDetails: false` to skip the detail page fetch. This reduces run time by ~70% but omits `descriptionHtml`, `descriptionText`, `descriptionMarkdown`, `summary`, and `contractType`.

***

### Known limitations

- **Description:** Only available when `fetchDetails: true`. Without it, `descriptionHtml`, `descriptionText`, and `descriptionMarkdown` are `null`.
- **Salary:** Not all employers publish salary information — `salaryMin`, `salaryMax`, `salaryCurrency`, and `salaryPeriod` will be `null` when unavailable. The raw `salaryText` is still captured when the value is displayed.
- **External source:** Visidarbi.lv aggregates from multiple Latvian portals (cv.lv, nva.gov.lv, ss.com, workingday.lv, etc.). The `externalSource` field identifies which portal the listing originates from, but the listing itself is hosted on Visidarbi.lv.
- **Apply URL:** Not included — Visidarbi.lv routes applications through the originating portal. Use `url` to navigate to the listing and follow the apply button from there.
- **Languages:** The scraper uses the English interface (`/en/`). Listing content (title, description) is in the original language of the posting (Latvian, Russian, or English depending on the employer).

***

### Technical details

- **Source:** Visidarbi.lv — Latvia's largest job aggregator, operated by Alma Career Latvia SIA (CV-Online Group). Aggregates from 10+ Latvian job portals.
- **Method:** HTTP-only with server-rendered HTML parsing. No browser required.
- **Proxy:** Apify AUTO proxy (rotated per request).
- **Memory:** 256 MB
- **Repost storage:** Named KeyValueStore `visidarbi-lv-job-dedup`, 90-day TTL per job ID.
- **Retry:** Automatic retry with exponential backoff on network errors and server-side rate limiting.
- **Deduplication:** Cross-run, 90-day window. Safe to run on a daily schedule without accumulating duplicates.

***

### Additional services

Need a custom actor, additional filters, scheduled runs, or integration support?
Send an email to <info@unfencedgroup.nl> — we build on request.

***

*Built by [unfenced-group](https://apify.com/unfenced-group) · Issues? Open a ticket or send a message.*

# Actor input Schema

## `keyword` (type: `string`):

Job title, skill, or keyword to search for. Leave empty to browse all jobs.

## `location` (type: `string`):

Location slug to filter by (e.g. 'riga', 'latvia', 'daugavpils-and-region', 'abroad'). Default: 'latvia'.

## `maxItems` (type: `integer`):

Maximum number of job listings to return.

## `daysOld` (type: `integer`):

Only return jobs posted within this many days. Set to 0 to disable.

## `skipReposts` (type: `boolean`):

Skip jobs seen in previous runs (cross-run deduplication, 90-day TTL).

## `fetchDetails` (type: `boolean`):

Fetch the detail page for each job to retrieve the full description and extra fields. Increases run time.

## `startUrls` (type: `array`):

Optional custom start URLs (e.g. a specific category or search result page on Visidarbi.lv). Overrides keyword/location when set.

## `proxyConfiguration` (type: `object`):

Proxy settings. Defaults to Apify AUTO proxy.

## Actor input object example

```json
{
  "keyword": "",
  "location": "latvia",
  "maxItems": 100,
  "daysOld": 0,
  "skipReposts": false,
  "fetchDetails": true,
  "startUrls": [],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `OUTPUT` (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 = {
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("unfenced-group/visidarbi-lv-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 = { "proxyConfiguration": { "useApifyProxy": True } }

# Run the Actor and wait for it to finish
run = client.actor("unfenced-group/visidarbi-lv-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 '{
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call unfenced-group/visidarbi-lv-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Visidarbi.lv Scraper — Latvia Job Listings",
        "description": "Scrapes job listings from Visidarbi.lv, Latvia's largest job portal and aggregator. Supports keyword and location filters, pagination, full description fetching, and cross-run repost detection.",
        "version": "0.0",
        "x-build-id": "x1nY7iiUxG39ANqRa"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/unfenced-group~visidarbi-lv-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-unfenced-group-visidarbi-lv-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/unfenced-group~visidarbi-lv-scraper/runs": {
            "post": {
                "operationId": "runs-sync-unfenced-group-visidarbi-lv-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/unfenced-group~visidarbi-lv-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-unfenced-group-visidarbi-lv-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": {
                    "keyword": {
                        "title": "Keyword",
                        "type": "string",
                        "description": "Job title, skill, or keyword to search for. Leave empty to browse all jobs.",
                        "default": ""
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "Location slug to filter by (e.g. 'riga', 'latvia', 'daugavpils-and-region', 'abroad'). Default: 'latvia'.",
                        "default": "latvia"
                    },
                    "maxItems": {
                        "title": "Max results",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of job listings to return.",
                        "default": 100
                    },
                    "daysOld": {
                        "title": "Days old (max age)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only return jobs posted within this many days. Set to 0 to disable.",
                        "default": 0
                    },
                    "skipReposts": {
                        "title": "Skip reposts",
                        "type": "boolean",
                        "description": "Skip jobs seen in previous runs (cross-run deduplication, 90-day TTL).",
                        "default": false
                    },
                    "fetchDetails": {
                        "title": "Fetch full description",
                        "type": "boolean",
                        "description": "Fetch the detail page for each job to retrieve the full description and extra fields. Increases run time.",
                        "default": true
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Optional custom start URLs (e.g. a specific category or search result page on Visidarbi.lv). Overrides keyword/location when set.",
                        "default": [],
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Proxy settings. Defaults to Apify AUTO proxy.",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
