# Seek.com.au Jobs Scraper (`crawlerbros/seek-jobs-scraper`) Actor

Scrape Seek.com.au job listings with titles, companies, locations, salaries, work arrangements, and full descriptions. HTTP-only, no login required.

- **URL**: https://apify.com/crawlerbros/seek-jobs-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Jobs, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 8 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $1.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
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

## Seek.com.au Jobs Scraper

Scrape jobs from [Seek.com.au](https://www.seek.com.au) — titles, companies, locations, salaries, work types, arrangements, classifications, and full descriptions. HTTP-only; no login, no cookies, no proxy required.

### Output (per job)

- `type` = `job_seek`
- `id`, `url`, `jobLink` (alias of `url`)
- `title`, `company`, `companyLogo`
- `location` = `{ city, state, postCode, country }`
- `locationDescription` — human-readable label (e.g. `"Mulgrave, Melbourne VIC"`)
- `locationArea` — Seek tracking area (e.g. `"Eastern Suburbs"`)
- `broaderLocationName` — parent region (e.g. `"Melbourne"`)
- `workType` — e.g. `"Full Time"`, `"Contract/Temp"`
- `workTypeLabels` — raw enum list (e.g. `["FULL_TIME"]`)
- `workArrangement` — display text (e.g. `"On-site"`, `"Hybrid"`, `"Remote"`)
- `workArrangementTypes` — enum list (e.g. `["ONSITE"]`)
- `salary`, `salaryDetails` = `{ min, max, currency, type }`
- `postedAt`, `postedAtLabel` (e.g. `"2d ago"`), `expiresAt`
- `classification`, `subClassification`
- `normalisedRoleTitle`, `normalisedOrganisationName`
- `descriptionHtml`, `descriptionText`
- `teaser` — short 1-line summary
- `bulletPoints` (list)
- `questionnaire` (list of screening questions, when present)
- `recruiterName`, `recruiterAgency`, `recruiterProfile`
- `advertiserId`, `advertiserName`, `advertiserVerified`
- `isPrivateAdvertiser` (true when advertiser posts without a company identity)
- `isLinkOut` (true = external direct-apply flow)
- `isVerified`, `isExpired`, `status`, `sourceZone`
- `displayType`, `isFeatured`, `isPremium`, `isStandout`, `isBranded` (listing promo flags)
- `applyUrl`, `applyLink` (alias), `directApplyUrl` (when external)
- `phoneNumber` (when recruiter provides one)
- `videoUrl`, `videoPosition` (when job includes an advertiser video)
- `branding` = `{ logoUrl, coverImageUrl, thumbnailCoverImageUrl, id }`
- `companyId`, `companySlug`, `companyIndustry`, `companySize`, `companyWebsite`
- `companyDescription`, `companyRating`, `companyReviewCount`, `companyPerks`
- `companyProfile` (raw nested profile object, when returned)
- `emails`, `phoneNumbers` (extracted from description text)
- `scrapedAt`

If a search returns zero matching jobs, a single `job_seek_blocked` sentinel record is emitted.

### Input

| Field | Type | Description |
|---|---|---|
| `searchUrls` | string[] | Seek search or job URLs. Prefill: `https://www.seek.com.au/python-jobs`. |
| `searchTerm` | string | Keywords used to build a search URL when `searchUrls` are missing. |
| `location` | string | Optional location, e.g. `"Sydney NSW"`. Combined with `searchTerm`. |
| `workTypes` | string[] | Filter by work type (`Full Time`, `Part Time`, `Contract/Temp`, `Casual/Vacation`). |
| `workArrangements` | string[] | Filter by work arrangement (`On-site`, `Hybrid`, `Remote`). |
| `dateRange` | enum | Filter by posted date (`any`, `1`, `3`, `7`, `14`, `30` days). |
| `salaryMin` / `salaryMax` | integer | Filter by parsed salary range. |
| `sortBy` | enum | `KeywordRelevance` or `ListedDate`. |
| `maxItems` | integer | Max jobs per run. Default 3. |
| `scrapeJobDetails` | boolean | Fetch each job's detail page for the full description. Default `true`. |

### How it works

1. Fetch each `searchUrls` entry (or build one from `searchTerm` + `location` + `sortBy`).
2. Parse the inline `window.SEEK_REDUX_DATA` JSON blob and read `results.results.jobs[]` — Seek ships the full job list as embedded JSON (no browser, no GraphQL auth, no pagination needed for the first page).
3. For each job, fetch `https://www.seek.com.au/job/<id>` to get the full description and apply link.
4. Apply client-side filters (`workTypes`, `workArrangements`, `dateRange`, `salaryMin`, `salaryMax`) before emitting each row.

### FAQ

**Do I need a proxy?** No. Seek serves clean HTML to datacenter IPs.

**Do I need login / cookies?** No.

**Why is the sentinel emitted?** When the given URL / filters match no jobs, we still emit one record so downstream pipelines never see an empty output.

**Are salaries always populated?** No — Seek advertisers often omit salary. When it's missing the scraper simply doesn't include the `salary` / `salaryDetails` keys (no nulls).

# Actor input Schema

## `searchUrls` (type: `array`):

Seek search URLs. Examples: https://www.seek.com.au/python-jobs, https://www.seek.com.au/jobs?keywords=python&where=Sydney, https://www.seek.com.au/job/91572959 (direct job URL also supported).
## `searchTerm` (type: `string`):

Optional keyword filter. Used to build a search URL when no searchUrls are supplied.
## `location` (type: `string`):

Optional location filter, e.g. "Sydney NSW" or "Melbourne VIC". Combined with searchTerm to build a /jobs?keywords=&where= URL.
## `state` (type: `string`):

Optional Australian state filter (e.g. NSW, VIC, QLD). Appended to the location when constructing the search URL.
## `postCode` (type: `string`):

Optional Australian 4-digit postcode. Appended to the location when constructing the search URL.
## `radius` (type: `integer`):

Distance in kilometres around the location. Passed as Seek's distance parameter when building a search URL.
## `salaryType` (type: `string`):

Seek salarytype parameter. Controls how the salary range is interpreted on Seek's side.
## `workTypes` (type: `array`):

Client-side filter. Only emit jobs whose workType matches one of the selected values.
## `workArrangements` (type: `array`):

Client-side filter. Only emit jobs whose work arrangement matches one of the selected values.
## `dateRange` (type: `string`):

Client-side filter on postedAt. "any" keeps all; otherwise only emit jobs posted within the last N days.
## `salaryMin` (type: `integer`):

Client-side filter. Only emit jobs whose parsed salary max is at least this value.
## `salaryMax` (type: `integer`):

Client-side filter. Only emit jobs whose parsed salary min is at most this value.
## `subclassifications` (type: `array`):

Client-side filter. Only emit jobs whose subClassification name matches one of these values (case-insensitive).
## `includeOneInTitle` (type: `array`):

Client-side filter. Only emit jobs whose title contains at least one of the given substrings (case-insensitive).
## `requireEmail` (type: `boolean`):

Client-side filter. Only emit jobs whose description contains at least one email address.
## `requirePhone` (type: `boolean`):

Client-side filter. Only emit jobs whose description contains at least one phone number.
## `requireEmailPhone` (type: `boolean`):

Client-side filter. Only emit jobs whose description contains BOTH an email address AND a phone number.
## `sortBy` (type: `string`):

Seek sort order applied to the search URL when constructed from keywords/location.
## `maxItems` (type: `integer`):

Maximum job listings to return.
## `scrapeJobDetails` (type: `boolean`):

Fetch each job's detail page for the full description + extra metadata. Off = listing-card fields only.
## `proxyConfiguration` (type: `object`):

Apify proxy. Seek 403s bare datacenter IPs on Apify, so the default enables Apify's free datacenter proxy pool.

## Actor input object example

```json
{
  "searchUrls": [
    "https://www.seek.com.au/python-jobs"
  ],
  "state": "",
  "salaryType": "any",
  "dateRange": "any",
  "requireEmail": false,
  "requirePhone": false,
  "requireEmailPhone": false,
  "sortBy": "KeywordRelevance",
  "maxItems": 3,
  "scrapeJobDetails": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
````

# 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 = {
    "searchUrls": [
        "https://www.seek.com.au/python-jobs"
    ],
    "maxItems": 3,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/seek-jobs-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 = {
    "searchUrls": ["https://www.seek.com.au/python-jobs"],
    "maxItems": 3,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/seek-jobs-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 '{
  "searchUrls": [
    "https://www.seek.com.au/python-jobs"
  ],
  "maxItems": 3,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call crawlerbros/seek-jobs-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Seek.com.au Jobs Scraper",
        "description": "Scrape Seek.com.au job listings with titles, companies, locations, salaries, work arrangements, and full descriptions. HTTP-only, no login required.",
        "version": "1.0",
        "x-build-id": "obvCbEwdlcCIZHqGR"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~seek-jobs-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-seek-jobs-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/crawlerbros~seek-jobs-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-seek-jobs-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/crawlerbros~seek-jobs-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-seek-jobs-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",
                "required": [
                    "searchUrls"
                ],
                "properties": {
                    "searchUrls": {
                        "title": "Search URLs",
                        "type": "array",
                        "description": "Seek search URLs. Examples: https://www.seek.com.au/python-jobs, https://www.seek.com.au/jobs?keywords=python&where=Sydney, https://www.seek.com.au/job/91572959 (direct job URL also supported).",
                        "default": [
                            "https://www.seek.com.au/python-jobs"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "searchTerm": {
                        "title": "Search Term (Keywords)",
                        "type": "string",
                        "description": "Optional keyword filter. Used to build a search URL when no searchUrls are supplied."
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "Optional location filter, e.g. \"Sydney NSW\" or \"Melbourne VIC\". Combined with searchTerm to build a /jobs?keywords=&where= URL."
                    },
                    "state": {
                        "title": "State",
                        "enum": [
                            "",
                            "NSW",
                            "VIC",
                            "QLD",
                            "WA",
                            "SA",
                            "TAS",
                            "ACT",
                            "NT"
                        ],
                        "type": "string",
                        "description": "Optional Australian state filter (e.g. NSW, VIC, QLD). Appended to the location when constructing the search URL.",
                        "default": ""
                    },
                    "postCode": {
                        "title": "Post Code",
                        "type": "string",
                        "description": "Optional Australian 4-digit postcode. Appended to the location when constructing the search URL."
                    },
                    "radius": {
                        "title": "Radius (km)",
                        "minimum": 0,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Distance in kilometres around the location. Passed as Seek's distance parameter when building a search URL."
                    },
                    "salaryType": {
                        "title": "Salary Type",
                        "enum": [
                            "any",
                            "AnnualPackage",
                            "HourlyRate",
                            "MonthlyPackage",
                            "YearlyPackage"
                        ],
                        "type": "string",
                        "description": "Seek salarytype parameter. Controls how the salary range is interpreted on Seek's side.",
                        "default": "any"
                    },
                    "workTypes": {
                        "title": "Work Types",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Client-side filter. Only emit jobs whose workType matches one of the selected values.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "Full Time",
                                "Part Time",
                                "Contract/Temp",
                                "Casual/Vacation"
                            ]
                        }
                    },
                    "workArrangements": {
                        "title": "Work Arrangements",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Client-side filter. Only emit jobs whose work arrangement matches one of the selected values.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "On-site",
                                "Hybrid",
                                "Remote"
                            ]
                        }
                    },
                    "dateRange": {
                        "title": "Date Posted",
                        "enum": [
                            "any",
                            "1",
                            "3",
                            "7",
                            "14",
                            "30"
                        ],
                        "type": "string",
                        "description": "Client-side filter on postedAt. \"any\" keeps all; otherwise only emit jobs posted within the last N days.",
                        "default": "any"
                    },
                    "salaryMin": {
                        "title": "Salary Min (AUD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Client-side filter. Only emit jobs whose parsed salary max is at least this value."
                    },
                    "salaryMax": {
                        "title": "Salary Max (AUD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Client-side filter. Only emit jobs whose parsed salary min is at most this value."
                    },
                    "subclassifications": {
                        "title": "Subclassifications",
                        "type": "array",
                        "description": "Client-side filter. Only emit jobs whose subClassification name matches one of these values (case-insensitive).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "includeOneInTitle": {
                        "title": "Title Must Include One Of",
                        "type": "array",
                        "description": "Client-side filter. Only emit jobs whose title contains at least one of the given substrings (case-insensitive).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "requireEmail": {
                        "title": "Require Email in Description",
                        "type": "boolean",
                        "description": "Client-side filter. Only emit jobs whose description contains at least one email address.",
                        "default": false
                    },
                    "requirePhone": {
                        "title": "Require Phone in Description",
                        "type": "boolean",
                        "description": "Client-side filter. Only emit jobs whose description contains at least one phone number.",
                        "default": false
                    },
                    "requireEmailPhone": {
                        "title": "Require Both Email and Phone",
                        "type": "boolean",
                        "description": "Client-side filter. Only emit jobs whose description contains BOTH an email address AND a phone number.",
                        "default": false
                    },
                    "sortBy": {
                        "title": "Sort By",
                        "enum": [
                            "KeywordRelevance",
                            "ListedDate"
                        ],
                        "type": "string",
                        "description": "Seek sort order applied to the search URL when constructed from keywords/location.",
                        "default": "KeywordRelevance"
                    },
                    "maxItems": {
                        "title": "Max Items",
                        "minimum": 1,
                        "maximum": 300,
                        "type": "integer",
                        "description": "Maximum job listings to return.",
                        "default": 3
                    },
                    "scrapeJobDetails": {
                        "title": "Scrape Job Details",
                        "type": "boolean",
                        "description": "Fetch each job's detail page for the full description + extra metadata. Off = listing-card fields only.",
                        "default": true
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Apify proxy. Seek 403s bare datacenter IPs on Apify, so the default enables Apify's free datacenter proxy pool.",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
