# Arbeitsagentur.de Scraper (`unfenced-group/arbeitsagentur-de-scraper`) Actor

Scrape 800k+ German job listings from Arbeitsagentur.de with full descriptions, salary data, GPS coordinates and repost detection. Keyword, city and contract filters included. No API key required.

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

## Pricing

from $1.50 / 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

## Arbeitsagentur.de Scraper

Extract structured job listings from **Arbeitsagentur.de** — Germany's largest public job board with over 800,000 active vacancies across all sectors and regions. No API key or account required.

![Arbeitsagentur.de Scraper](https://i.imgur.com/Bx0GL8D.png)

### Why use this scraper?

- **800,000+ listings** — The official job portal of Germany's Federal Employment Agency, covering virtually every sector
- **Full job descriptions** — Complete vacancy text in HTML, plain text, and Markdown formats
- **Salary data** — Structured annual and hourly salary ranges when disclosed by the employer
- **GPS coordinates** — Latitude/longitude for every job location, ready for geo-filtering and mapping
- **Rich filters** — Search by keyword, city, radius, working hours, contract type, and posting date
- **Repost detection** — Cross-run deduplication flags jobs that reappear under a new reference number

### Input parameters

| Parameter | Type | Default | Description |
|---|---|---|---|
| `searchQuery` | string | — | Job title, keyword or skill (e.g. `Softwareentwickler`, `Pflege`) |
| `location` | string | — | City or region (e.g. `Berlin`, `München`) |
| `locationRadius` | integer | 25 | Search radius in km around the location |
| `jobOfferType` | string | `1` | `1` = regular jobs · `2` = apprenticeships · `4` = self-employment |
| `workingHours` | string | all | `vz` = full-time · `tz` = part-time · `ho` = home office · `mj` = mini-job · `snw` = shift/night/weekend |
| `contractType` | string | all | `1` = fixed-term · `2` = permanent |
| `daysOld` | integer | — | Max posting age in days (1, 7, 14, or 28) |
| `maxResults` | integer | 100 | Maximum number of results to return |
| `fetchDetails` | boolean | `true` | Fetch full job descriptions (disable for metadata-only runs) |
| `skipReposts` | boolean | `false` | Skip jobs already seen in previous runs |
| `startUrls` | array | — | Scrape specific job URLs directly |

### Output schema

Each result contains the following fields:

| Field | Type | Description |
|---|---|---|
| `id` | string | Unique reference number (Referenznummer) |
| `url` | string | Direct link to the job posting |
| `title` | string | Job title |
| `company` | string | Employer name |
| `jobType` | string | Primary occupation category (Bundesagentur classification) |
| `allJobTypes` | array | All associated occupation categories |
| `offerType` | string | `ARBEIT`, `AUSBILDUNG`, or `SELBSTAENDIGKEIT` |
| `city` | string | City |
| `region` | string | Federal state or region |
| `postalCode` | string | Postal code |
| `country` | string | Country |
| `latitude` | number | GPS latitude |
| `longitude` | number | GPS longitude |
| `isFullTime` | boolean | Full-time position |
| `isCareerChange` | boolean | Suitable for career changers (Quereinsteiger) |
| `isMinijob` | boolean | Marginal employment / mini-job |
| `isLeiharbeit` | boolean | Temporary staffing (Arbeitnehmerüberlassung) |
| `isPrivateAgency` | boolean | Listed by a private recruitment agency |
| `isShiftOrNightWork` | boolean | Includes shift, night or weekend work |
| `isPartTimeEvening` | boolean | Part-time: evening |
| `isPartTimeMorning` | boolean | Part-time: morning |
| `isPartTimeAfternoon` | boolean | Part-time: afternoon |
| `isPartTimeFlexible` | boolean | Part-time: flexible hours |
| `salaryMin` | number | Minimum salary (EUR) |
| `salaryMax` | number | Maximum salary (EUR) |
| `salaryPeriod` | string | `YEAR`, `MONTH`, or `HOUR` |
| `currency` | string | Always `EUR` |
| `contractType` | string | `UNBEFRISTET`, `BEFRISTET`, or `KEINE_ANGABE` |
| `salaryType` | string | Salary disclosure type |
| `publishDate` | string | First publication date (`YYYY-MM-DD`) |
| `publishDateISO` | string | First publication date in ISO 8601 |
| `modifiedAt` | string | Last modification timestamp |
| `startDate` | string | Earliest start date |
| `description` | string | Full job description (HTML) |
| `descriptionText` | string | Full job description (plain text) |
| `descriptionMarkdown` | string | Full job description (Markdown) |
| `applyUrl` | string | External application URL (when applicable) |
| `referenceNumber` | string | Internal chiffre number |
| `partnerName` | string | Alliance partner name (e.g. staffing firm) |
| `partnerUrl` | string | Alliance partner website |
| `employerHash` | string | Employer identifier hash |
| `contentHash` | string | MD5 hash of URL + publish date (16 chars) |
| `summary` | string | One-line summary for alerts and integrations |
| `source` | string | Always `arbeitsagentur.de` |
| `scrapedAt` | string | ISO 8601 timestamp of extraction |
| `isRepost` | boolean | `true` if seen in a previous run |
| `originalPublishDate` | string | Original publish date for reposts |
| `originalUrl` | string | Original URL for reposts |

### Example output

```json
{
  "id": "12265-480157_JB5111271-S",
  "url": "https://www.arbeitsagentur.de/jobsuche/suche?id=12265-480157_JB5111271-S&angebotsart=1",
  "title": "Softwareentwickler (m/w/d)",
  "company": "FERCHAU GmbH Niederlassung Rosenheim",
  "jobType": "Softwareentwickler/in",
  "allJobTypes": ["Softwareentwickler/in"],
  "offerType": "ARBEIT",
  "city": "Nußdorf am Inn",
  "region": "BAYERN",
  "postalCode": "83131",
  "country": "DEUTSCHLAND",
  "latitude": 47.732437483,
  "longitude": 12.162120449,
  "isFullTime": true,
  "isLeiharbeit": true,
  "salaryMin": 45000,
  "salaryMax": 65000,
  "salaryPeriod": "YEAR",
  "currency": "EUR",
  "contractType": "KEINE_ANGABE",
  "publishDateISO": "2026-03-31",
  "descriptionMarkdown": "### Softwareentwickler (m/w/d)\n\n**Dein Aufgabengebiet**\n* Entwicklung und Pflege von Softwarelösungen\n...",
  "source": "arbeitsagentur.de",
  "isRepost": false
}
````

### Pricing

This scraper uses **pay-per-result** pricing at **$1.50 per 1,000 results**.

| Volume | Cost |
|---|---|
| 1,000 results | $1.50 |
| 10,000 results | $15.00 |
| 100,000 results | $150.00 |
| Flat-rate alternative | Subscribe to Apify for unlimited usage |

### Performance

| Scenario | Results/min | Notes |
|---|---|---|
| List-only (`fetchDetails: false`) | ~2,000 | Metadata only, no descriptions |
| With details (`fetchDetails: true`) | ~200–300 | Full descriptions and salary data |
| Full Germany scrape | ~800,000 results | Use `maxResults` to cap volume |

### Known limitations

- **Salary data**: Only ~25% of listings include disclosed salary ranges. This reflects employer disclosure rates, not a scraper limitation.
- **External listings**: Jobs posted via third-party boards (externestellenboersen) include a redirect URL rather than an internal description.
- **Date filter precision**: Arbeitsagentur's API supports fixed date buckets (1, 7, 14, 28 days) — values outside these boundaries are rounded up.
- **Description format**: Job descriptions are sourced as Markdown and converted to HTML and plain text. Formatting quality depends on the original employer submission.

### Technical details

- **Memory**: 256 MB
- **Timeout**: 3 hours
- **Output format**: JSON (Apify Dataset)
- **Dedup store**: `arbeitsagentur-de-job-dedup` (90-day TTL)

### Additional services

Need a custom integration, scheduled runs, or data delivery to your warehouse? Contact **info@unfencedgroup.nl** — we build tailored data pipelines on top of our portfolio scrapers.

***

*Built and maintained by [unfenced-group](https://apify.com/unfenced-group) · [View all scrapers](https://apify.com/unfenced-group)*

# Actor input Schema

## `searchQuery` (type: `string`):

Job title, keyword, or skill to search for (e.g. 'Softwareentwickler', 'Krankenpfleger', 'Marketing').

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

City or region to search in (e.g. 'Berlin', 'München', 'Hamburg'). Leave empty to search all of Germany.

## `locationRadius` (type: `integer`):

Radius in kilometres around the specified location. Only applied when a location is set.

## `jobOfferType` (type: `string`):

Type of job listings to retrieve: '1' = regular jobs (Arbeit), '2' = apprenticeships (Ausbildung), '4' = self-employment (Selbstständigkeit).

## `workingHours` (type: `string`):

Filter by working hours: 'vz' = full-time, 'tz' = part-time, 'ho' = home office, 'mj' = mini-job, 'snw' = shift/night/weekend. Leave empty for all.

## `contractType` (type: `string`):

Filter by contract duration: '1' = fixed-term (befristet), '2' = permanent (unbefristet). Leave empty for all.

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

Only return jobs posted within this many days. Supported values map to: 1 day, 7 days, 14 days, 28 days. Leave empty for all.

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

Maximum number of job listings to return.

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

Whether to fetch the full job description, salary range, and contact details from the detail page. Disable for faster runs when only basic metadata is needed.

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

Skip jobs that were already seen in a previous run (based on referenznummer). Requires at least one previous run to take effect.

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

Optional list of specific Arbeitsagentur job URLs or referenznummer values to scrape directly. Overrides the search query when set.

## Actor input object example

```json
{
  "searchQuery": "Softwareentwickler",
  "location": "Berlin",
  "locationRadius": 25,
  "jobOfferType": "1",
  "workingHours": "",
  "contractType": "",
  "maxResults": 100,
  "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 = {
    "searchQuery": "Softwareentwickler",
    "location": "Berlin",
    "jobOfferType": "1",
    "workingHours": "",
    "contractType": ""
};

// Run the Actor and wait for it to finish
const run = await client.actor("unfenced-group/arbeitsagentur-de-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 = {
    "searchQuery": "Softwareentwickler",
    "location": "Berlin",
    "jobOfferType": "1",
    "workingHours": "",
    "contractType": "",
}

# Run the Actor and wait for it to finish
run = client.actor("unfenced-group/arbeitsagentur-de-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 '{
  "searchQuery": "Softwareentwickler",
  "location": "Berlin",
  "jobOfferType": "1",
  "workingHours": "",
  "contractType": ""
}' |
apify call unfenced-group/arbeitsagentur-de-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Arbeitsagentur.de Scraper",
        "description": "Scrape 800k+ German job listings from Arbeitsagentur.de with full descriptions, salary data, GPS coordinates and repost detection. Keyword, city and contract filters included. No API key required.",
        "version": "0.0",
        "x-build-id": "OQSbxb2Sf8etO27fF"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/unfenced-group~arbeitsagentur-de-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-unfenced-group-arbeitsagentur-de-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~arbeitsagentur-de-scraper/runs": {
            "post": {
                "operationId": "runs-sync-unfenced-group-arbeitsagentur-de-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~arbeitsagentur-de-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-unfenced-group-arbeitsagentur-de-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": {
                    "searchQuery": {
                        "title": "Search query",
                        "type": "string",
                        "description": "Job title, keyword, or skill to search for (e.g. 'Softwareentwickler', 'Krankenpfleger', 'Marketing').",
                        "default": ""
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "City or region to search in (e.g. 'Berlin', 'München', 'Hamburg'). Leave empty to search all of Germany.",
                        "default": ""
                    },
                    "locationRadius": {
                        "title": "Location radius (km)",
                        "minimum": 0,
                        "maximum": 200,
                        "type": "integer",
                        "description": "Radius in kilometres around the specified location. Only applied when a location is set.",
                        "default": 25
                    },
                    "jobOfferType": {
                        "title": "Job offer type",
                        "enum": [
                            "1",
                            "2",
                            "4"
                        ],
                        "type": "string",
                        "description": "Type of job listings to retrieve: '1' = regular jobs (Arbeit), '2' = apprenticeships (Ausbildung), '4' = self-employment (Selbstständigkeit).",
                        "default": "1"
                    },
                    "workingHours": {
                        "title": "Working hours",
                        "enum": [
                            "",
                            "vz",
                            "tz",
                            "ho",
                            "mj",
                            "snw"
                        ],
                        "type": "string",
                        "description": "Filter by working hours: 'vz' = full-time, 'tz' = part-time, 'ho' = home office, 'mj' = mini-job, 'snw' = shift/night/weekend. Leave empty for all.",
                        "default": ""
                    },
                    "contractType": {
                        "title": "Contract type",
                        "enum": [
                            "",
                            "1",
                            "2"
                        ],
                        "type": "string",
                        "description": "Filter by contract duration: '1' = fixed-term (befristet), '2' = permanent (unbefristet). Leave empty for all.",
                        "default": ""
                    },
                    "daysOld": {
                        "title": "Max age (days)",
                        "minimum": 1,
                        "maximum": 28,
                        "type": "integer",
                        "description": "Only return jobs posted within this many days. Supported values map to: 1 day, 7 days, 14 days, 28 days. Leave empty for all."
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 1,
                        "maximum": 50000,
                        "type": "integer",
                        "description": "Maximum number of job listings to return.",
                        "default": 100
                    },
                    "fetchDetails": {
                        "title": "Fetch job details",
                        "type": "boolean",
                        "description": "Whether to fetch the full job description, salary range, and contact details from the detail page. Disable for faster runs when only basic metadata is needed.",
                        "default": true
                    },
                    "skipReposts": {
                        "title": "Skip reposts",
                        "type": "boolean",
                        "description": "Skip jobs that were already seen in a previous run (based on referenznummer). Requires at least one previous run to take effect.",
                        "default": false
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Optional list of specific Arbeitsagentur job URLs or referenznummer values to scrape directly. Overrides the search query when set.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
