# StepStone Sweden Scraper (`unfenced-group/stepstone-se-scraper`) Actor

Scrape job listings from StepStone Sweden (stepstone.se). Filter by keyword, city, and date. Full descriptions in HTML, text & Markdown. Repost detection included. $1.49/1,000 results.

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

## Pricing

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

## StepStone Sweden Scraper

![StepStone Sweden Scraper](https://api.apify.com/v2/key-value-stores/lJlifu6C8YQfZMPKE/records/stepstone-se-scraper)


Extract structured job listings from **StepStone Sweden** ([stepstone.se](https://www.stepstone.se)), Sweden's specialist job board for managers and professionals. Filter by keyword, city, and age — full descriptions, repost detection, and scheduled feed mode included. No API key required.

---

### Why this scraper?

#### ⚡ No browser, no proxy required
Pure HTTP extraction from StepStone Sweden's server-rendered pages. Runs on 512 MB — fast, lightweight, and cost-efficient.

#### 🇸🇪 Full Swedish job market coverage
Access thousands of active listings across all Swedish cities — Stockholm, Göteborg, Malmö, Uppsala, and beyond.

#### 📄 Three description formats
Every job detail page delivers the full vacancy text in **HTML**, **plain text**, and **Markdown** — ready for any downstream pipeline.

#### 🔄 Cross-run repost detection
The built-in deduplication cache (90-day memory) flags reposts with `isRepost: true` and tracks the original publish date — so scheduled feeds never contain duplicates.

#### 🗓️ Flexible filtering
Filter by keyword, city, and maximum age in days. Combine `daysOld: 1` with `skipReposts: true` for a clean daily feed of genuinely new listings.

#### 🔗 Direct URL support
Supply any StepStone Sweden search URL or individual job URL via `startUrls` — bypasses the search logic entirely and scrapes exactly what you need.

---

### Input parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `searchQuery` | string | `""` | Keyword(s) to search for. Example: `"software developer"`, `"sjuksköterska"`, `"chef"`. Leave empty to browse all listings. |
| `location` | string | `""` | City or region. Example: `"Stockholm"`, `"Göteborg"`, `"Malmö"`. Leave empty for all of Sweden. |
| `maxResults` | integer | `100` | Maximum number of job listings to return. |
| `fetchDetails` | boolean | `true` | Fetch each job's detail page for full description, salary, and apply URL. Disable for faster list-only runs. |
| `skipReposts` | boolean | `false` | Skip jobs already seen in previous runs. Combine with `daysOld: 1` for clean daily feeds. |
| `daysOld` | integer | `0` | Only return jobs posted within the last N days. `0` = no age filter. |
| `startUrls` | array | `[]` | Direct StepStone Sweden URLs to scrape (search pages or job detail pages). Overrides keyword/location search. |

---

### Output schema

#### Always present

| Field | Type | Description |
|-------|------|-------------|
| `url` | string | Full URL of the job listing page |
| `jobId` | string | Unique job identifier extracted from URL |
| `source` | string | Always `"stepstone.se"` |
| `language` | string | Always `"sv"` (Swedish) |
| `country` | string | Always `"SE"` |
| `title` | string\|null | Job title as listed |
| `company` | string\|null | Hiring organisation name |
| `companyUrl` | string\|null | Company website (when available) |
| `companyLogoUrl` | string\|null | Company logo image URL (when available via JSON data) |
| `city` | string\|null | City of the vacancy |
| `location` | string\|null | Full location string (may include region) |
| `publishDate` | string\|null | Human-readable publish date in Swedish format |
| `publishDateISO` | string\|null | Publish date in ISO 8601 format (`YYYY-MM-DD`) |
| `daysOld` | integer\|null | Number of days since the listing was published |
| `isRepost` | boolean | `true` if this job was seen in a previous run |
| `originalPublishDate` | string\|null | First publish date when `isRepost` is `true` |
| `originalUrl` | string\|null | Original URL when `isRepost` is `true` |
| `contentHash` | string | MD5 fingerprint of description content (first 16 chars) |
| `summary` | string\|null | Short description snippet from the list page |
| `scrapedAt` | string | ISO 8601 timestamp of when this item was scraped |

#### With `fetchDetails: true`

| Field | Type | Description |
|-------|------|-------------|
| `contractType` | string\|null | Employment type (e.g., `"FULL_TIME"`, `"PART_TIME"`) |
| `workSchedule` | string\|null | Work schedule when published by the employer |
| `salaryMin` | number\|null | Minimum salary (null if not published by employer) |
| `salaryMax` | number\|null | Maximum salary (null if not published by employer) |
| `salaryPeriod` | string\|null | Salary period (e.g., `"YEAR"`, `"MONTH"`) |
| `salaryCurrency` | string\|null | Currency code — typically `"SEK"` |
| `applyUrl` | string\|null | Direct application URL when available |
| `expiryDate` | string\|null | Listing expiry date when published (`YYYY-MM-DD`) |
| `descriptionHtml` | string\|null | Full job description as raw HTML |
| `descriptionText` | string\|null | Full job description as plain text (tags stripped) |
| `descriptionMarkdown` | string\|null | Full job description converted to Markdown |

#### Example output record

```json
{
  "url": "https://www.stepstone.se/jobb/senior-software-engineer-spotify-stockholm-7824391",
  "jobId": "7824391",
  "source": "stepstone.se",
  "language": "sv",
  "country": "SE",
  "title": "Senior Software Engineer",
  "company": "Spotify Technology S.A.",
  "companyUrl": "https://www.spotify.com/",
  "companyLogoUrl": "https://cdn.stepstone.se/logo-spotify.gif",
  "city": "Stockholm",
  "location": "Stockholm",
  "contractType": "FULL_TIME",
  "workSchedule": null,
  "salaryMin": null,
  "salaryMax": null,
  "salaryPeriod": null,
  "salaryCurrency": "SEK",
  "applyUrl": "https://www.stepstone.se/jobb/senior-software-engineer-spotify-stockholm-7824391/apply",
  "publishDate": "2 maj 2026",
  "publishDateISO": "2026-05-02",
  "daysOld": 1,
  "expiryDate": "2026-06-01",
  "descriptionHtml": "<h2>About the role</h2><p>We are looking for a Senior Software Engineer...</p>",
  "descriptionText": "About the role We are looking for a Senior Software Engineer...",
  "descriptionMarkdown": "### About the role\n\nWe are looking for a Senior Software Engineer...",
  "contentHash": "a3f8c912e04b7d1a",
  "summary": "Vi söker en erfaren mjukvaruingenjör till vårt backend-team...",
  "isRepost": false,
  "originalPublishDate": null,
  "originalUrl": null,
  "scrapedAt": "2026-05-03T11:42:00.000Z"
}
````

***

### Examples

**Search for IT jobs in Stockholm:**

```json
{
  "searchQuery": "software developer",
  "location": "Stockholm",
  "maxResults": 200,
  "fetchDetails": true,
  "daysOld": 30
}
```

**Search for nursing roles across all of Sweden:**

```json
{
  "searchQuery": "sjuksköterska",
  "location": "",
  "maxResults": 500,
  "fetchDetails": true,
  "daysOld": 14,
  "skipReposts": false
}
```

**Scrape directly from a saved search URL:**

```json
{
  "startUrls": [
    { "url": "https://www.stepstone.se/lediga-jobb-i-hela-sverige/data-it/" },
    { "url": "https://www.stepstone.se/lediga-jobb-i-goteborg/" }
  ],
  "maxResults": 100,
  "fetchDetails": true
}
```

**Daily feed — new listings only (for scheduling):**

```json
{
  "searchQuery": "chef",
  "location": "Sverige",
  "maxResults": 1000,
  "fetchDetails": true,
  "daysOld": 1,
  "skipReposts": true
}
```

***

### 💰 Pricing

**$1.49 per 1,000 results** — you only pay for successfully retrieved 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.

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

***

### Performance

| Run size | Approx. time | Memory |
|----------|-------------|--------|
| 100 jobs (with details) | ~3–5 min | 512 MB |
| 500 jobs (with details) | ~15–25 min | 512 MB |
| 1,000 jobs (list only) | ~5–10 min | 512 MB |
| 10,000 jobs (list only) | ~45–90 min | 512 MB |

***

### Known limitations

- **Salary data:** Rarely published by Swedish employers — `salaryMin`/`salaryMax` are often `null`
- **Apply URL:** StepStone Sweden uses application flows via their platform; direct external apply links are not always available
- **Historical listings:** The scraper retrieves only currently active listings — expired jobs are not accessible

***

### Technical details

- **Source:** stepstone.se — Sweden's specialist job board for managers and professionals (Schibsted group)
- **Architecture (v3.0.0):** JSON-HTML — extracts from Next.js `__NEXT_DATA__` JSON as primary source; falls back to `/_next/data/{buildId}/*.json` API for paginated requests; CSS selectors used only as last resort. JSON-LD on detail pages.
- **Memory:** 512 MB
- **Repost storage:** KeyValueStore `stepstone-se-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?.nl]\(mailto:info@unfencedgroup.nl) — we build on request.

***

***

### Need a custom scraper?

**[Unfenced Group](https://www.unfencedgroup.nl)** builds Apify actors for any website — for free.

If the site you need isn't in our portfolio yet, just ask. We scope, build, and publish it at no cost to you. You only pay for results — we absorb the compute and proxy costs ourselves. Same pay-per-result pricing, same quality, same standards as every actor in this portfolio.

**Get in touch:** [www.unfencedgroup.nl](https://www.unfencedgroup.nl)

# Actor input Schema

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

Job keyword(s) to search for on StepStone Sweden. Example: 'software developer', 'sjuksköterska', 'chef'. Leave empty to browse all jobs.

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

City or region to filter by. Example: 'Stockholm', 'Göteborg', 'Malmö'. Leave empty for all of Sweden.

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

Maximum number of job listings to return. Use lower values to control costs.

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

ON: fetches full job description, salary, company info, and all details. OFF: returns basic listing info only (faster, lower cost).

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

Skip jobs already seen in previous runs using cross-run deduplication (90-day memory). Enable for scheduled daily feeds to receive only new listings.

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

Only return jobs posted within the last N days. Leave at 0 to return all jobs regardless of age.

## `requestsPerSecond` (type: `integer`):

Rate limit: max HTTP requests per second. Lower values are safer. Default 5 is typically fine; reduce to 1-2 if you encounter 429 errors.

## `proxyConfig` (type: `object`):

Optional proxy configuration. Leave empty to use no proxy (default). Enable if you encounter 403 errors or rate limiting.

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

Optional list of specific StepStone Sweden URLs to scrape directly — either job listing search pages or individual job detail pages. Overrides searchQuery and location.

## Actor input object example

```json
{
  "searchQuery": "developer",
  "location": "",
  "maxResults": 100,
  "fetchDetails": false,
  "skipReposts": false,
  "daysOld": 0,
  "requestsPerSecond": 5,
  "proxyConfig": {},
  "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": "developer",
    "maxResults": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("unfenced-group/stepstone-se-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": "developer",
    "maxResults": 100,
}

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

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "StepStone Sweden Scraper",
        "description": "Scrape job listings from StepStone Sweden (stepstone.se). Filter by keyword, city, and date. Full descriptions in HTML, text & Markdown. Repost detection included. $1.49/1,000 results.",
        "version": "0.0",
        "x-build-id": "m8yMVgdPS6lguggZX"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/unfenced-group~stepstone-se-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-unfenced-group-stepstone-se-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~stepstone-se-scraper/runs": {
            "post": {
                "operationId": "runs-sync-unfenced-group-stepstone-se-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~stepstone-se-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-unfenced-group-stepstone-se-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 keywords",
                        "type": "string",
                        "description": "Job keyword(s) to search for on StepStone Sweden. Example: 'software developer', 'sjuksköterska', 'chef'. Leave empty to browse all jobs.",
                        "default": ""
                    },
                    "location": {
                        "title": "Location / City",
                        "type": "string",
                        "description": "City or region to filter by. Example: 'Stockholm', 'Göteborg', 'Malmö'. Leave empty for all of Sweden.",
                        "default": ""
                    },
                    "maxResults": {
                        "title": "Max items",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of job listings to return. Use lower values to control costs.",
                        "default": 100
                    },
                    "fetchDetails": {
                        "title": "Include full job details",
                        "type": "boolean",
                        "description": "ON: fetches full job description, salary, company info, and all details. OFF: returns basic listing info only (faster, lower cost).",
                        "default": false
                    },
                    "skipReposts": {
                        "title": "Skip reposts",
                        "type": "boolean",
                        "description": "Skip jobs already seen in previous runs using cross-run deduplication (90-day memory). Enable for scheduled daily feeds to receive only new listings.",
                        "default": false
                    },
                    "daysOld": {
                        "title": "Max age (days)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only return jobs posted within the last N days. Leave at 0 to return all jobs regardless of age.",
                        "default": 0
                    },
                    "requestsPerSecond": {
                        "title": "Requests per second",
                        "minimum": 1,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Rate limit: max HTTP requests per second. Lower values are safer. Default 5 is typically fine; reduce to 1-2 if you encounter 429 errors.",
                        "default": 5
                    },
                    "proxyConfig": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional proxy configuration. Leave empty to use no proxy (default). Enable if you encounter 403 errors or rate limiting.",
                        "default": {}
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Optional list of specific StepStone Sweden URLs to scrape directly — either job listing search pages or individual job detail pages. Overrides searchQuery and location.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
