# UK Postcodes Scraper (`parseforge/uk-postcodes-io-scraper`) Actor

Resolve UK postcodes into full location data from postcodes.io. Look up a list in bulk, search a partial code, or reverse geocode a coordinate, and return latitude, longitude, district, ward, constituency, and NHS areas. Handy for CRM enrichment, delivery routing, and analysis.

- **URL**: https://apify.com/parseforge/uk-postcodes-io-scraper.md
- **Developed by:** [ParseForge](https://apify.com/parseforge) (community)
- **Categories:** Developer tools, Lead generation, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $9.00 / 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.
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

![ParseForge Banner](https://github.com/ParseForge/apify-assets/blob/ad35ccc13ddd068b9d6cba33f323962e39aed5b2/banner.jpg?raw=true)

## 📮 UK Postcodes Scraper

> 🚀 **Turn UK postcodes into rich location data.** Look up any postcode and get coordinates, district, ward, constituency, and health and census areas.

> 🕒 **Last updated:** 2026-06-04 · **📊 27 fields** per postcode · powered by postcodes.io · England, Scotland, Wales

Resolve UK postcodes into full geographic and administrative records using the public postcodes.io service. Paste a list of postcodes, search by a partial postcode, or reverse geocode from a coordinate, and get latitude and longitude, local authority district, electoral ward, parliamentary constituency, NHS and clinical commissioning areas, census codes, and more for every result.

**Coverage:** every live postcode in England, Scotland, and Wales, with three ways to query: bulk lookup, partial search, and reverse geocoding by coordinate.

| 🎯 Target Audience | 💡 Primary Use Cases |
|---|---|
| Sales and CRM teams | Enrich customer records by postcode |
| Logistics and delivery | Geocode addresses to coordinates |
| Analysts and researchers | Map data to districts and constituencies |
| App and data teams | Validate and standardize postcodes |

### 📋 What the UK Postcodes Scraper does

- Looks up a list of postcodes in bulk.
- Searches matching postcodes from a partial code.
- Reverse geocodes the nearest postcodes to a coordinate.
- Returns 27 structured fields per postcode.
- Maps each postcode to district, ward, and constituency.
- Exports to CSV, Excel, JSON, XML, or via API.

### 🎬 Full Demo (_🚧 Coming soon_)

### ⚙️ Input

| Field | Type | Description |
|---|---|---|
| `postcodes` | array | UK postcodes to look up in bulk. The main mode. |
| `query` | string | Partial postcode to search, used when the list is empty. |
| `latitude` | string | Center latitude for reverse geocoding. |
| `longitude` | string | Center longitude for reverse geocoding. |
| `radiusMeters` | integer | Reverse geocode radius in meters, up to 2000. |
| `maxItems` | integer | Cap on records returned. Free plan is limited to 10. |

**Example 1: bulk lookup**
```json
{
  "postcodes": ["OX1 1DP", "M1 1AE", "GU1 3UW", "CF10 1EP"],
  "maxItems": 100
}
````

**Example 2: reverse geocode a coordinate**

```json
{
  "latitude": "51.5010",
  "longitude": "-0.1416",
  "radiusMeters": 1000,
  "maxItems": 50
}
```

> ⚠️ **Good to Know:** modes are tried in order, so a postcode list takes priority over a search, and a search takes priority over a coordinate. Some fields depend on the nation, for example `adminCounty` is filled for shire counties but empty for metropolitan areas, and `region` applies to England. Invalid postcodes return a record with an error message.

### 📊 Output

Each record contains the following fields:

| Field | Description |
|---|---|
| 📮 `postcode` | Full postcode |
| 🔤 `outcode` | Outward code |
| 🔡 `incode` | Inward code |
| ⭐ `quality` | Positional quality indicator |
| 🏳 `country` | England, Scotland, or Wales |
| 🗺 `region` | Region, for England |
| 🏛 `adminDistrict` | Local authority district |
| 📍 `adminWard` | Electoral ward |
| 🏞 `adminCounty` | County, for shire areas |
| ⛪ `parish` | Parish |
| 🗳 `parliamentaryConstituency` | Parliamentary constituency |
| 🧭 `latitude` | Latitude |
| 🧭 `longitude` | Longitude |
| 📐 `eastings` | OS grid eastings |
| 📐 `northings` | OS grid northings |
| 🏥 `nhsHa` | NHS health authority |
| 🩺 `ccg` | Clinical commissioning group |
| 🧮 `lsoa` | Lower layer super output area |
| 🧮 `msoa` | Middle layer super output area |
| 🇪🇺 `nuts` | International territorial unit |
| 👮 `pfa` | Police force area |
| 🧳 `ttwa` | Travel to work area |
| 📅 `dateOfIntroduction` | When the postcode was introduced |
| 📉 `indexOfMultipleDeprivation` | Deprivation rank |
| 🔎 `searchTerm` | Query that surfaced this record |
| 🕒 `scrapedAt` | Collection timestamp |
| ❌ `error` | Error message, null on success |

**Real sample records:**

```json
{
  "postcode": "OX1 1DP",
  "outcode": "OX1",
  "incode": "1DP",
  "country": "England",
  "region": "South East",
  "adminDistrict": "Oxford",
  "adminWard": "Holywell",
  "adminCounty": "Oxfordshire",
  "parliamentaryConstituency": "Oxford West and Abingdon",
  "latitude": 51.749908,
  "longitude": -1.256533,
  "nhsHa": "South Central",
  "ccg": "NHS Buckinghamshire, Oxfordshire and Berkshire West",
  "pfa": "Thames Valley",
  "error": null
}
```

```json
{
  "postcode": "GU1 3UW",
  "outcode": "GU1",
  "incode": "3UW",
  "country": "England",
  "region": "South East",
  "adminDistrict": "Guildford",
  "adminWard": "Castle",
  "adminCounty": "Surrey",
  "parliamentaryConstituency": "Guildford",
  "latitude": 51.234743,
  "longitude": -0.572952,
  "nhsHa": "South East Coast",
  "ccg": "NHS Surrey Heartlands",
  "pfa": "Surrey",
  "error": null
}
```

```json
{
  "postcode": "CF10 1EP",
  "outcode": "CF10",
  "incode": "1EP",
  "country": "Wales",
  "adminDistrict": "Cardiff",
  "adminWard": "Cathays",
  "parliamentaryConstituency": "Cardiff South and Penarth",
  "latitude": 51.475764,
  "longitude": -3.179217,
  "nhsHa": "Cardiff and Vale University Health Board",
  "ccg": "Cardiff and Vale University",
  "pfa": "South Wales",
  "error": null
}
```

### ✨ Why choose this Actor

- **Three query modes.** Bulk lookup, partial search, and reverse geocoding.
- **Rich detail.** 27 fields covering geography, politics, health, and census.
- **Three nations.** England, Scotland, and Wales in one run.
- **Coordinates included.** Latitude and longitude on every valid postcode.
- **Ready to export.** CSV, Excel, JSON, XML, or API, with a clean table view.

### 📈 How it compares to alternatives

| | UK Postcodes Scraper | Manual lookup site | Generic web scrapers |
|---|---|---|---|
| Bulk list in one run | ✅ | ❌ | ⚠️ Needs setup |
| District, ward, constituency | ✅ | ⚠️ | ❌ |
| Reverse geocode by coordinate | ✅ | ⚠️ | ❌ |
| Health and census areas | ✅ | ❌ | ❌ |
| Export to CSV/Excel/JSON/XML | ✅ | ❌ | ⚠️ |

### 🚀 How to use

1. Create a free Apify account using [this sign-up link](https://console.apify.com/sign-up?fpr=vmoqkp).
2. Open the UK Postcodes Scraper.
3. Paste a list of `postcodes`, or set a `query`, or a `latitude` and `longitude`.
4. Click **Start** and watch the dataset fill in real time.
5. Export your results as CSV, Excel, JSON, or XML, or pull them via API.

### 💼 Business use cases

**🎯 Data enrichment**
| Goal | How |
|---|---|
| Enrich a CRM | Look up customer postcodes in bulk |
| Standardize records | Replace messy codes with clean ones |

**📦 Logistics**
| Goal | How |
|---|---|
| Plan deliveries | Geocode postcodes to coordinates |
| Group by area | Cluster by district or ward |

**📊 Analysis**
| Goal | How |
|---|---|
| Map to constituencies | Join data on parliamentary areas |
| Study deprivation | Use the deprivation index |

**🏥 Public sector**
| Goal | How |
|---|---|
| Health planning | Map postcodes to NHS areas |
| Census work | Use LSOA and MSOA codes |

### 🔌 Automating UK Postcodes Scraper

Connect this Actor to your stack with Apify integrations: **Make**, **Zapier**, **Slack**, **Airbyte**, **GitHub**, and **Google Drive**. Schedule runs and push fresh postcode data into spreadsheets, databases, or alerts.

### 🌟 Beyond business use cases

- **Research:** join survey data to districts and wards.
- **Personal:** find the constituency or NHS area for an address.
- **Non-profit:** target services by deprivation index.
- **Experimentation:** build maps and geocoding tools.

### 🤖 Ask an AI assistant

Paste your dataset into [ChatGPT](https://chat.openai.com), [Claude](https://claude.ai), [Perplexity](https://www.perplexity.ai), or [Copilot](https://copilot.microsoft.com) and ask for postcodes grouped by district, constituency, or deprivation rank.

### ❓ Frequently Asked Questions

**1. Do I need an API key?**
No. The Actor uses the public postcodes.io service.

**2. Which areas are covered?**
England, Scotland, and Wales. Northern Ireland is not included.

**3. How do I look up many postcodes at once?**
Paste them into the `postcodes` list. They are processed in bulk.

**4. Can I search a partial postcode?**
Yes. Put it in `query`, for example EC1A.

**5. Can I find postcodes near a point?**
Yes. Set `latitude`, `longitude`, and `radiusMeters`.

**6. What happens with an invalid postcode?**
You get a record with an error message so nothing is silently dropped.

**7. Why is the county empty sometimes?**
Counties apply to shire areas. Metropolitan and unitary areas leave it empty.

**8. Are coordinates always included?**
Yes, for every valid postcode.

**9. What export formats are supported?**
CSV, Excel, JSON, XML, and API.

**10. Can I run it on a schedule?**
Yes, with Apify Schedules and integrations.

**11. Is there a free option?**
Yes. Free runs are limited to 10 items as a preview. Paid plans unlock up to 1,000,000.

### 🔌 Integrate with any app

Use the Apify API, webhooks, and 5,000-plus integrations to push postcode data into Make, Zapier, Google Sheets, Airtable, databases, and more.

### 🔗 Recommended Actors

- [Nominatim OSM Scraper](https://apify.com/parseforge/nominatim-osm-scraper)
- [Zippopotam Postal Lookup Scraper](https://apify.com/parseforge/zippopotam-postal-lookup-scraper)
- [GeoNames Places Scraper](https://apify.com/parseforge/geonames-places-scraper)
- [Data Gov UK Scraper](https://apify.com/parseforge/data-gov-uk-scraper)
- [RestCountries Scraper](https://apify.com/parseforge/restcountries-scraper)

> 💡 **Pro Tip:** browse the complete [ParseForge collection](https://apify.com/parseforge).

**🆘 Need Help?** [Open our contact form](https://tally.so/r/BzdKgA)

> **⚠️ Disclaimer:** independent tool, not affiliated with postcodes.io or the Office for National Statistics. Contains public sector information licensed under the Open Government Licence.

# Actor input Schema

## `postcodes` (type: `array`):

UK postcodes to look up, one per line, for example 'OX1 1DP'. Spacing is not important. This is the main mode.

## `query` (type: `string`):

Partial postcode to search, for example 'EC1A'. Returns matching postcodes. Used only when the postcode list is empty.

## `latitude` (type: `string`):

Center latitude for reverse geocoding, for example 51.5010. Used with longitude when the list and search are empty.

## `longitude` (type: `string`):

Center longitude for reverse geocoding, for example -0.1416.

## `radiusMeters` (type: `integer`):

Search radius for reverse geocoding, in meters. Maximum 2000.

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

Free users: Limited to 10 items (preview). Paid users: Optional, max 1,000,000

## Actor input object example

```json
{
  "postcodes": [
    "OX1 1DP",
    "M1 1AE",
    "GU1 3UW",
    "CF10 1EP",
    "EH1 1RE"
  ],
  "radiusMeters": 1000,
  "maxItems": 10
}
```

# 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 = {
    "postcodes": [
        "OX1 1DP",
        "M1 1AE",
        "GU1 3UW",
        "CF10 1EP",
        "EH1 1RE"
    ],
    "radiusMeters": 1000,
    "maxItems": 10
};

// Run the Actor and wait for it to finish
const run = await client.actor("parseforge/uk-postcodes-io-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 = {
    "postcodes": [
        "OX1 1DP",
        "M1 1AE",
        "GU1 3UW",
        "CF10 1EP",
        "EH1 1RE",
    ],
    "radiusMeters": 1000,
    "maxItems": 10,
}

# Run the Actor and wait for it to finish
run = client.actor("parseforge/uk-postcodes-io-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 '{
  "postcodes": [
    "OX1 1DP",
    "M1 1AE",
    "GU1 3UW",
    "CF10 1EP",
    "EH1 1RE"
  ],
  "radiusMeters": 1000,
  "maxItems": 10
}' |
apify call parseforge/uk-postcodes-io-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "UK Postcodes Scraper",
        "description": "Resolve UK postcodes into full location data from postcodes.io. Look up a list in bulk, search a partial code, or reverse geocode a coordinate, and return latitude, longitude, district, ward, constituency, and NHS areas. Handy for CRM enrichment, delivery routing, and analysis.",
        "version": "0.1",
        "x-build-id": "HRoL3gWaaRMG41lxQ"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/parseforge~uk-postcodes-io-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-parseforge-uk-postcodes-io-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/parseforge~uk-postcodes-io-scraper/runs": {
            "post": {
                "operationId": "runs-sync-parseforge-uk-postcodes-io-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/parseforge~uk-postcodes-io-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-parseforge-uk-postcodes-io-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": {
                    "postcodes": {
                        "title": "Postcodes",
                        "type": "array",
                        "description": "UK postcodes to look up, one per line, for example 'OX1 1DP'. Spacing is not important. This is the main mode.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "query": {
                        "title": "Search query",
                        "type": "string",
                        "description": "Partial postcode to search, for example 'EC1A'. Returns matching postcodes. Used only when the postcode list is empty."
                    },
                    "latitude": {
                        "title": "Latitude",
                        "type": "string",
                        "description": "Center latitude for reverse geocoding, for example 51.5010. Used with longitude when the list and search are empty."
                    },
                    "longitude": {
                        "title": "Longitude",
                        "type": "string",
                        "description": "Center longitude for reverse geocoding, for example -0.1416."
                    },
                    "radiusMeters": {
                        "title": "Radius (meters)",
                        "minimum": 1,
                        "maximum": 2000,
                        "type": "integer",
                        "description": "Search radius for reverse geocoding, in meters. Maximum 2000."
                    },
                    "maxItems": {
                        "title": "Max Items",
                        "minimum": 1,
                        "maximum": 1000000,
                        "type": "integer",
                        "description": "Free users: Limited to 10 items (preview). Paid users: Optional, max 1,000,000"
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
