# Hemnet.se Scraper (`unfenced-group/hemnet-scraper`) Actor

Real estate listings scraper for hemnet.se

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

## Pricing

from $1.49 / 1,000 listings

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## Hemnet.se Scraper

Scrape real estate listings from **Hemnet.se**, Sweden's largest property portal. Get active for-sale listings or historical sold prices, with full structured data: price, area, rooms, coordinates, images, and more.

Search by location name — no need to look up internal IDs. The scraper resolves any Swedish municipality, city, district, or county automatically.

### What it does

- **For-sale listings** — every active property with asking price, fees, rooms, area, images, and geocoordinates.
- **Sold prices** — historical final sale prices with price change vs asking, sold date, and square-metre price. This is the data that tells you what properties actually sell for.
- **Location by name** — type "Lund" or "Umeå" and the scraper finds the right area.
- **Filtering** — price range, room count, living area, and recency (listings published in the last N days).
- **Start URLs** — paste any hemnet.se search URL and it scrapes exactly that search.

### Input

| Field | Type | Description |
|---|---|---|
| `location` | string | Swedish location by name (e.g. "Stockholm", "Lund", "Vasastan"). Resolved automatically. |
| `locationId` | string | Exact Hemnet location ID. Overrides `location`. Found in the `location_ids[]` URL parameter. |
| `listingStatus` | string | `for_sale` (active listings) or `sold` (final prices). Default `for_sale`. |
| `housingType` | string | `apartment`, `villa`, `townhouse`, `cottage`, `land`, or `all`. Default `apartment`. |
| `sortBy` | string | `newest`, `lowest_price`, or `highest_price`. For-sale only. |
| `minPrice` / `maxPrice` | integer | Asking price range in SEK. |
| `minRooms` / `maxRooms` | integer | Room count range. |
| `livingAreaMin` / `livingAreaMax` | integer | Living area range in m². |
| `daysOld` | integer | For-sale only: listings published in the last N days. Ideal for a daily feed. |
| `maxItems` | integer | Maximum results. `0` for unlimited. Default `100`. |
| `startUrls` | array | Full hemnet.se search URLs (`/bostader` or `/salda`). Overrides the fields above. |

### Output — for-sale listings

| Field | Type | Description |
|---|---|---|
| `id` | string | Hemnet listing ID |
| `url` | string | Listing page URL |
| `slug` | string | URL slug |
| `transaction` | string | Always `sale` |
| `propertyType` | string | Housing form name (e.g. Lägenhet, Villa) |
| `housingFormSymbol` | string | Housing form code (APARTMENT, HOUSE…) |
| `recordType` | string | COMMON, PROJECT, etc. |
| `activePackage` | string | Listing tier (PREMIUM, STANDARD) |
| `hemnetBusiness` | boolean | Whether it is a Hemnet Business listing |
| `isNewConstruction` | boolean | New construction flag |
| `isUpcoming` | boolean | Upcoming listing flag |
| `isRemovedBeforeShowing` | boolean | Removed before showing flag |
| `priceText` | string | Asking price as shown (e.g. "2 295 000 kr") |
| `priceAmount` | integer | Asking price as a number (SEK) |
| `priceCurrency` | string | Always `SEK` |
| `squareMeterPriceAmount` | integer | Price per m² (SEK) |
| `squareMeterPriceText` | string | Price per m² as shown |
| `monthlyFeeAmount` | integer | Monthly fee / avgift (SEK) |
| `monthlyFeeText` | string | Monthly fee as shown |
| `streetAddress` | string | Street address |
| `area` | string | Area / district name |
| `municipality` | string | Municipality (kommun) |
| `locationDescription` | string | Full location string |
| `country` | string | Always `SE` |
| `latitude` / `longitude` | number | Geocoordinates |
| `rooms` | number | Room count |
| `roomsText` | string | Room count as shown |
| `areaM2` | number | Living area in m² |
| `livingAreaText` | string | Living area as shown |
| `landAreaM2` | number | Land area in m² (houses/plots) |
| `floorText` | string | Floor as shown (e.g. "vån 1/8") |
| `floorNumber` | integer | Floor number |
| `totalFloors` | integer | Total floors in building |
| `showings` | array | Scheduled showing times |
| `features` | array | Feature labels (Balkong, Hiss…) |
| `stateLabels` | array | State labels |
| `images` | array | Image URLs |
| `agencyName` | string | Broker agency name |
| `publishDate` | string | Publish date (YYYY-MM-DD) |
| `publishDateISO` | string | Publish date (ISO 8601) |
| `projectId` | string | Project ID (project listings) |
| `description` | string | Listing description |
| `source` | string | Always `hemnet.se` |
| `scrapedAt` | string | Scrape timestamp (ISO 8601) |
| `contentHash` | string | Change-detection hash |

### Output — sold listings

| Field | Type | Description |
|---|---|---|
| `id` | string | Hemnet sale ID |
| `url` | string | Sold listing page URL |
| `transaction` | string | Always `sold` |
| `propertyType` | string | Housing form name |
| `finalPriceText` | string | Final sale price as shown |
| `finalPriceAmount` | integer | Final sale price (SEK) |
| `askingPriceAmount` | integer | Original asking price (SEK) |
| `priceChangeText` | string | Change vs asking (e.g. "+8 %") |
| `squareMeterPriceAmount` | integer | Final price per m² (SEK) |
| `streetAddress` | string | Street address |
| `area` / `municipality` | string | Location |
| `latitude` / `longitude` | number | Geocoordinates |
| `rooms` | number | Room count |
| `areaM2` | number | Living area in m² |
| `soldAt` | string | Sold timestamp |
| `soldAtLabel` | string | Sold date as shown |
| `agencyName` | string | Broker agency name |
| `scrapedAt` | string | Scrape timestamp |

### Example record (for-sale)

```json
{
  "id": "21732147",
  "url": "https://www.hemnet.se/bostad/lagenhet-2rum-sundbyberg-sundbybergs-kommun-kavallerivagen-2a-21732147",
  "transaction": "sale",
  "propertyType": "Lägenhet",
  "housingFormSymbol": "APARTMENT",
  "activePackage": "PREMIUM",
  "priceText": "2 295 000 kr",
  "priceAmount": 2295000,
  "priceCurrency": "SEK",
  "squareMeterPriceAmount": 41727,
  "monthlyFeeAmount": 3632,
  "streetAddress": "Kavallerivägen 2A",
  "area": "Sundbyberg",
  "municipality": "Sundbybergs kommun",
  "latitude": 59.37304,
  "longitude": 17.93919,
  "rooms": 2,
  "areaM2": 55,
  "floorNumber": 1,
  "totalFloors": 8,
  "features": ["Balkong", "Hiss"],
  "images": ["https://bilder.hemnet.se/images/itemgallery_cut/77/31/7731685658c4850b11d7cf5bafd8dc9c.jpg"],
  "agencyName": "Svensk Fastighetsförmedling Sundbyberg",
  "publishDate": "2026-06-26",
  "source": "hemnet.se",
  "scrapedAt": "2026-06-26T10:15:00.000Z"
}
````

### Examples

**Apartments for sale in Lund, newest first**

```json
{ "location": "Lund", "housingType": "apartment", "sortBy": "newest", "maxItems": 100 }
```

**Houses 4M–8M SEK with 4+ rooms in Göteborg**

```json
{ "location": "Göteborg", "housingType": "villa", "minPrice": 4000000, "maxPrice": 8000000, "minRooms": 4 }
```

**Sold apartment prices in Stockholm**

```json
{ "location": "Stockholm", "listingStatus": "sold", "housingType": "apartment", "maxItems": 500 }
```

**Daily feed — everything new in the last day**

```json
{ "location": "Malmö", "housingType": "all", "daysOld": 1, "maxItems": 0 }
```

**Scrape an exact Hemnet search URL**

```json
{ "startUrls": ["https://www.hemnet.se/bostader?location_ids%5B%5D=17744&item_types%5B%5D=bostadsratt&rooms_min=3"] }
```

***

### 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

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

Swedish location by name — any municipality, city, district, or county (e.g. 'Stockholm', 'Lund', 'Umeå', 'Vasastan'). Resolved automatically against Hemnet. Leave empty to use Location ID or Start URLs.

## `locationId` (type: `string`):

Exact Hemnet location ID, e.g. '17744'. Overrides the Location name field. Find it in the location\_ids\[] parameter of any hemnet.se search URL.

## `listingStatus` (type: `string`):

Scrape active for-sale listings or historical sold prices.

## `housingType` (type: `string`):

Which property category to scrape.

## `sortBy` (type: `string`):

Sort order (for-sale listings only).

## `minPrice` (type: `integer`):

Minimum asking price in SEK.

## `maxPrice` (type: `integer`):

Maximum asking price in SEK.

## `minRooms` (type: `integer`):

Minimum number of rooms.

## `maxRooms` (type: `integer`):

Maximum number of rooms.

## `livingAreaMin` (type: `integer`):

Minimum living area in square metres.

## `livingAreaMax` (type: `integer`):

Maximum living area in square metres.

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

For-sale only: return listings published within the last N days (requires Newest sort). Leave empty for no recency filter — ideal for a daily feed.

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

Maximum number of listings to return. Set to 0 for unlimited.

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

Paste full hemnet.se search URLs (/bostader or /salda). Filters in the URL are honoured. Overrides the Location and filter fields above.

## Actor input object example

```json
{
  "location": "Stockholm",
  "listingStatus": "for_sale",
  "housingType": "apartment",
  "sortBy": "newest",
  "maxItems": 100
}
```

# 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 = {
    "location": "Stockholm",
    "maxItems": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("unfenced-group/hemnet-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 = {
    "location": "Stockholm",
    "maxItems": 100,
}

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

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Hemnet.se Scraper",
        "description": "Real estate listings scraper for hemnet.se",
        "version": "0.0",
        "x-build-id": "EHOV0Bd2XV4ww52B4"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/unfenced-group~hemnet-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-unfenced-group-hemnet-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~hemnet-scraper/runs": {
            "post": {
                "operationId": "runs-sync-unfenced-group-hemnet-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~hemnet-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-unfenced-group-hemnet-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": {
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "Swedish location by name — any municipality, city, district, or county (e.g. 'Stockholm', 'Lund', 'Umeå', 'Vasastan'). Resolved automatically against Hemnet. Leave empty to use Location ID or Start URLs."
                    },
                    "locationId": {
                        "title": "Location ID (advanced)",
                        "type": "string",
                        "description": "Exact Hemnet location ID, e.g. '17744'. Overrides the Location name field. Find it in the location_ids[] parameter of any hemnet.se search URL."
                    },
                    "listingStatus": {
                        "title": "Listing status",
                        "enum": [
                            "for_sale",
                            "sold"
                        ],
                        "type": "string",
                        "description": "Scrape active for-sale listings or historical sold prices.",
                        "default": "for_sale"
                    },
                    "housingType": {
                        "title": "Property type",
                        "enum": [
                            "apartment",
                            "villa",
                            "townhouse",
                            "cottage",
                            "land",
                            "all"
                        ],
                        "type": "string",
                        "description": "Which property category to scrape.",
                        "default": "apartment"
                    },
                    "sortBy": {
                        "title": "Sort by",
                        "enum": [
                            "newest",
                            "lowest_price",
                            "highest_price"
                        ],
                        "type": "string",
                        "description": "Sort order (for-sale listings only).",
                        "default": "newest"
                    },
                    "minPrice": {
                        "title": "Min price (SEK)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum asking price in SEK."
                    },
                    "maxPrice": {
                        "title": "Max price (SEK)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum asking price in SEK."
                    },
                    "minRooms": {
                        "title": "Minimum rooms",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum number of rooms."
                    },
                    "maxRooms": {
                        "title": "Maximum rooms",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of rooms."
                    },
                    "livingAreaMin": {
                        "title": "Min living area (m²)",
                        "type": "integer",
                        "description": "Minimum living area in square metres."
                    },
                    "livingAreaMax": {
                        "title": "Max living area (m²)",
                        "type": "integer",
                        "description": "Maximum living area in square metres."
                    },
                    "daysOld": {
                        "title": "Max listing age (days)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "For-sale only: return listings published within the last N days (requires Newest sort). Leave empty for no recency filter — ideal for a daily feed."
                    },
                    "maxItems": {
                        "title": "Max results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of listings to return. Set to 0 for unlimited.",
                        "default": 100
                    },
                    "startUrls": {
                        "title": "Start URLs (advanced)",
                        "type": "array",
                        "description": "Paste full hemnet.se search URLs (/bostader or /salda). Filters in the URL are honoured. Overrides the Location and filter fields above.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
