# Konnekt.com.mt Job Scraper (`unfenced-group/konnekt-scraper`) Actor

Scrape Konnekt for structured job listings in Malta. Filter by keyword, category, and employment type. Full description and salary data included.

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

## Pricing

from $0.99 / 1,000 results

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

## Konnekt Scraper

![Konnekt Scraper](https://i.imgur.com/OG5VYjv.png)

Scrape job listings from [konnekt.com](https://www.konnekt.com) — Malta's leading recruitment agency with 450+ active vacancies across all major industries. Filter by keyword, job category, and employment type. No API key required.

---

### Why this scraper?

#### 🔍 Keyword, category & type filters
Search by free-text keyword (e.g. `"accountant"`, `"project manager"`, `"software developer"`) and combine with job category (e.g. `accounting`, `banking`, `it-jobs`) and employment type (`full-time`, `part-time`, `temporary-contract`). All three filters can be used together or independently.

#### 💰 Structured salary data
When employers publish compensation, the scraper returns it as structured fields: `salaryMin`, `salaryMax`, `salaryCurrency` (always `EUR`), and `salaryPeriod` (e.g. `YEAR`). No regex parsing needed on your end. Fields are `null` when salary is not disclosed.

#### 📄 Three description formats
Full job descriptions are returned in three formats for maximum flexibility:

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

#### 🔄 Repost detection
Employers on Konnekt regularly republish the same vacancy to stay at the top of search results. The scraper maintains a 90-day cross-run fingerprint cache (`konnekt-job-dedup` Key-Value Store). Each result includes `isRepost`, `originalPublishDate`, and `originalUrl`. Set `skipReposts: true` to suppress duplicates entirely.

#### ⏱️ Date filtering
Use `daysOld` to limit results to jobs posted within the last N days — ideal for scheduled daily or weekly runs. Requires `fetchDetails: true` (publish dates are only available on detail pages).

#### 🔗 Direct URL scraping
Pass specific job page URLs via `startUrls` to scrape individual listings directly. Useful for monitoring specific vacancies or integrating with your own discovery pipeline.

---

### Input parameters

| Parameter | Type | Description | Default |
|---|---|---|---|
| `keyword` | string | Search keyword(s). Examples: `"accountant"`, `"project manager"`, `"software developer"` | `""` |
| `jobFocus` | string | Job category slug. Examples: `accounting`, `banking`, `it-jobs`, `finance`, `engineering`, `human-resources`, `insurance`, `sales-business-development` | `""` |
| `jobType` | string | Employment type. Options: `full-time`, `part-time`, `temporary-contract` | `""` |
| `maxItems` | integer | Maximum number of results to return. Use to control cost. | `200` |
| `fetchDetails` | boolean | Fetch each job's detail page for full description, structured salary, publish date, and reference code. Disable for faster list-only runs. | `true` |
| `daysOld` | integer | Only return jobs posted within this many days. Requires `fetchDetails: true`. | `—` |
| `skipReposts` | boolean | Skip jobs already seen in previous runs (uses 90-day cross-run cache). | `false` |
| `startUrls` | array | Specific Konnekt job page URLs to scrape directly. When set, `jobFocus` and `jobType` are ignored. | `[]` |

---

### Output schema

#### Always present

| Field | Type | Description |
|---|---|---|
| `id` | string | Unique numeric job ID extracted from the URL |
| `url` | string | Full URL to the job detail page |
| `title` | string | Job title as shown on the listing |
| `location` | string | Location text from the listing card (e.g. `"Central Malta"`, `"South of Malta"`) |
| `category` | string | Job category / focus area (e.g. `"Accounting"`, `"Banking"`) |
| `contractType` | string | Employment type (e.g. `"Full Time"`, `"Part Time"`, `"Temporary / Contract"`) |
| `experienceLevel` | string | Seniority level (e.g. `"Intermediate (1-3 years)"`, `"Middle Management"`) |
| `workMode` | string | Work arrangement (e.g. `"hybrid"`, `"On Premises"`). `null` if not specified. |
| `salaryRaw` | string | Salary as shown on the listing card (e.g. `"€25,000 - €26,000 Annually"`). `null` if not shown. |
| `isFeatured` | boolean | `true` if the listing has a Featured badge |
| `isRepost` | boolean | `true` if this job was seen in a previous run |
| `originalPublishDate` | string | ISO date of first-ever observation. `null` if not a repost. |
| `originalUrl` | string | URL from the first observation. `null` if not a repost. |
| `contentHash` | string | 16-character MD5 fingerprint for deduplication |
| `source` | string | Always `"konnekt.com"` |
| `scrapedAt` | string | ISO 8601 timestamp of when this item was scraped |

#### With `fetchDetails: true`

| Field | Type | Description |
|---|---|---|
| `publishDate` | string | Publish date in `YYYY-MM-DD` format (Europe/Malta timezone) |
| `publishDateISO` | string | Publish date in full ISO 8601 format |
| `expiryDate` | string | Closing date of the vacancy (`YYYY-MM-DD`). `null` if not set. |
| `referenceCode` | string | Internal reference code (e.g. `"IK286"`). `null` if not published. |
| `salaryMin` | number | Minimum salary as a number. `null` if not disclosed by employer. |
| `salaryMax` | number | Maximum salary as a number. `null` if not disclosed by employer. |
| `salaryCurrency` | string | Salary currency, always `"EUR"` when present. `null` if salary not disclosed. |
| `salaryPeriod` | string | Salary period (e.g. `"YEAR"`). `null` if salary not disclosed. |
| `descriptionHtml` | string | Full job description as raw HTML. `null` if unavailable. |
| `descriptionText` | string | Full job description as plain text. `null` if unavailable. |
| `descriptionMarkdown` | string | Full job description in Markdown format. `null` if unavailable. |

#### Example output record

```json
{
    "id":                  "87692",
    "url":                 "https://www.konnekt.com/jobs/finance-jobs/accountant/87692",
    "title":               "Accountant",
    "location":            "Central Malta",
    "category":            "Finance",
    "contractType":        "Full Time",
    "experienceLevel":     "Intermediate (1-3 years)",
    "workMode":            "hybrid",
    "salaryRaw":           "€35,000 - €40,000 Annually",
    "isFeatured":          true,
    "isRepost":            false,
    "originalPublishDate": null,
    "originalUrl":         null,
    "contentHash":         "a3f8b2c91d4e5f67",
    "source":              "konnekt.com",
    "scrapedAt":           "2026-04-24T15:30:00.000Z",
    "publishDate":         "2026-04-22",
    "publishDateISO":      "2026-04-22T10:14:00.000Z",
    "expiryDate":          "2026-05-22",
    "referenceCode":       "SB441",
    "salaryMin":           35000,
    "salaryMax":           40000,
    "salaryCurrency":      "EUR",
    "salaryPeriod":        "YEAR",
    "descriptionHtml":     "<p>Our client is seeking an <strong>Accountant</strong> to join their finance team...</p>",
    "descriptionText":     "Our client is seeking an Accountant to join their finance team...",
    "descriptionMarkdown": "Our client is seeking an **Accountant** to join their finance team..."
}
````

***

### Examples

**Scrape all accountant vacancies with full details:**

```json
{
    "keyword": "accountant",
    "fetchDetails": true,
    "maxItems": 100
}
```

**Full-time IT jobs only:**

```json
{
    "jobFocus": "it-jobs",
    "jobType": "full-time",
    "fetchDetails": true,
    "maxItems": 50
}
```

**Senior finance roles — keyword + category + type combined:**

```json
{
    "keyword": "senior",
    "jobFocus": "finance",
    "jobType": "full-time",
    "fetchDetails": true,
    "maxItems": 200
}
```

**Direct URL scraping for specific listings:**

```json
{
    "startUrls": [
        { "url": "https://www.konnekt.com/jobs/finance-jobs/accountant/87692" },
        { "url": "https://www.konnekt.com/jobs/banking-jobs/operations-officer/87805" }
    ],
    "fetchDetails": true
}
```

**Daily feed — new jobs only, skip reposts:**

```json
{
    "daysOld": 1,
    "skipReposts": true,
    "fetchDetails": true,
    "maxItems": 500
}
```

***

### 💰 Pricing

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

| Results | Cost |
|---|---|
| 100 | ~$0.10 |
| 1,000 | ~$0.99 |
| 10,000 | ~$9.90 |
| 100,000 | ~$99.00 |

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

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

***

### Performance

| Run | Time (approx.) |
|---|---|
| 100 jobs, `fetchDetails: false` | ~15 seconds |
| 100 jobs, `fetchDetails: true` | ~1 minute |
| 473 jobs (full site), `fetchDetails: true` | ~3–4 minutes |

***

### Known limitations

- **Salary:** Not all employers disclose compensation. `salaryMin`, `salaryMax`, and related fields will be `null` when not published. The raw `salaryRaw` string from the listing card may still be present.
- **Publish date:** Only available with `fetchDetails: true`. Without detail pages, `publishDate` and `publishDateISO` are `null`, which means `daysOld` filtering is also unavailable.
- **Keyword search:** Free-text keyword search matches against job titles and descriptions as indexed by Konnekt. Niche or misspelled terms may return zero results.
- **Total listings:** Konnekt is Malta-specific with ~450–500 active listings at any time — not a large-volume board.

***

### Technical details

- **Source:** konnekt.com — Malta's leading recruitment agency
- **Memory:** 512 MB
- **Repost storage:** KeyValueStore `konnekt-job-dedup`, 90-day TTL
- **Retry:** Automatic retry on network errors, exponential backoff, 3 attempts per request

***

### Additional services

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

***

*Part of the [Unfenced Group](https://apify.com/unfenced-group) European job board scraper portfolio — 50+ job markets covered.*
*Built by [unfenced-group](https://apify.com/unfenced-group) · Issues? Open a ticket or send a message.*

# Actor input Schema

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

Search keyword(s) to filter jobs. Examples: accountant, project manager, software developer, senior analyst. Leave empty to browse all jobs.

## `jobFocus` (type: `string`):

Filter by job category slug. Examples: accounting, banking, sales-business-development, it-jobs, human-resources, finance, engineering, administrative, insurance. Leave empty to scrape all categories.

## `jobType` (type: `string`):

Filter by employment type. Leave empty for all types.

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

Maximum number of job listings to return. Use to control cost.

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

Fetch each job's detail page to retrieve full description, salary breakdown, publish date, and reference code. Required for daysOld filtering. Disable for faster, cheaper runs.

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

Only return jobs posted within this many days. Requires fetchDetails to be enabled. Leave empty for no date filter.

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

Skip jobs already seen in previous runs. Uses a 90-day cross-run cache stored in the Key-Value Store.

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

Optional list of specific Konnekt job page URLs to scrape directly. When provided, the jobFocus and jobType filters are ignored.

## Actor input object example

```json
{
  "keyword": "",
  "jobFocus": "",
  "jobType": "",
  "maxItems": 200,
  "fetchDetails": true,
  "skipReposts": false,
  "startUrls": []
}
```

# Actor output Schema

## `results` (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 = {};

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

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

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Konnekt.com.mt Job Scraper",
        "description": "Scrape Konnekt for structured job listings in Malta. Filter by keyword, category, and employment type. Full description and salary data included.",
        "version": "0.0",
        "x-build-id": "sSkDS3elTB0dLJ5N8"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/unfenced-group~konnekt-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-unfenced-group-konnekt-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~konnekt-scraper/runs": {
            "post": {
                "operationId": "runs-sync-unfenced-group-konnekt-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~konnekt-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-unfenced-group-konnekt-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": "Search keyword(s) to filter jobs. Examples: accountant, project manager, software developer, senior analyst. Leave empty to browse all jobs.",
                        "default": ""
                    },
                    "jobFocus": {
                        "title": "Job category",
                        "type": "string",
                        "description": "Filter by job category slug. Examples: accounting, banking, sales-business-development, it-jobs, human-resources, finance, engineering, administrative, insurance. Leave empty to scrape all categories.",
                        "default": ""
                    },
                    "jobType": {
                        "title": "Employment type",
                        "enum": [
                            "",
                            "full-time",
                            "part-time",
                            "temporary-contract"
                        ],
                        "type": "string",
                        "description": "Filter by employment type. Leave empty for all types.",
                        "default": ""
                    },
                    "maxItems": {
                        "title": "Max results",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of job listings to return. Use to control cost.",
                        "default": 200
                    },
                    "fetchDetails": {
                        "title": "Fetch detail pages",
                        "type": "boolean",
                        "description": "Fetch each job's detail page to retrieve full description, salary breakdown, publish date, and reference code. Required for daysOld filtering. Disable for faster, cheaper runs.",
                        "default": true
                    },
                    "daysOld": {
                        "title": "Max age (days)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only return jobs posted within this many days. Requires fetchDetails to be enabled. Leave empty for no date filter."
                    },
                    "skipReposts": {
                        "title": "Skip reposts",
                        "type": "boolean",
                        "description": "Skip jobs already seen in previous runs. Uses a 90-day cross-run cache stored in the Key-Value Store.",
                        "default": false
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Optional list of specific Konnekt job page URLs to scrape directly. When provided, the jobFocus and jobType filters are ignored.",
                        "default": [],
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
