# Glassdoor Jobs Scraper - Most Comprehensive (`kaix/glassdoor-jobs-scraper`) Actor

🔥 ~$0.1/1K jobs 🔥 Scrape Glassdoor job listings with title, description, salary, location, and company details.

- **URL**: https://apify.com/kaix/glassdoor-jobs-scraper.md
- **Developed by:** [Kai](https://apify.com/kaix) (community)
- **Categories:** Jobs, E-commerce, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.09 / 1,000 jobs

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

## Glassdoor Jobs Scraper

Scrape job listings from Glassdoor by keyword and location, or from any employer page or search URL. Full job descriptions, salary data, employer profiles with CEO and ratings, geo coordinates, skills, and education requirements. Structured JSON output.

### Why use this scraper?

- Full HTML job description, not just a snippet
- Salary range (min/median/max), currency, period, and source (employer-provided vs Glassdoor estimate)
- Employer profile: size, revenue, HQ, industry, CEO, year founded, website
- 8 employer rating categories: overall, career opportunities, comp & benefits, culture, management, work-life balance, CEO approval, recommend to friend
- Geo coordinates (lat/lng), city, state, country for every listing
- Extracted skills, education requirements, years of experience
- Job type, remote work type, easy apply flag, expired status
- Search by keyword and location, or paste any employer/search URL
- Filter by date posted, job type, seniority, remote work, salary, company size, and more

### Use cases

- Build a job board or aggregator with rich structured data
- Track open positions at specific companies over time
- Analyze salary ranges by role, location, or company
- Feed job descriptions into NLP pipelines for skill extraction
- Compare employer profiles and ratings across companies

### How to use

#### Search by keyword + location

```json
{
  "keyword": "Software Engineer",
  "location": "San Francisco, CA"
}
````

#### Search with filters

```json
{
  "keyword": "Software Engineer",
  "location": "San Francisco, CA",
  "fromAge": 7,
  "jobType": ["fulltime"],
  "remoteWorkType": ["1"],
  "seniorityType": ["midseniorlevel"],
  "minSalary": 100000,
  "maxJobs": 50
}
```

#### Search by keyword only (all locations)

```json
{
  "keyword": "Data Scientist",
  "maxJobs": 50
}
```

#### Scrape a specific company

```json
{
  "urls": ["https://www.glassdoor.com/Jobs/Google-Jobs-E9079.htm"]
}
```

#### Scrape multiple companies

```json
{
  "urls": [
    "https://www.glassdoor.com/Jobs/Google-Jobs-E9079.htm",
    "https://www.glassdoor.com/Jobs/Meta-Jobs-E40772.htm"
  ],
  "maxJobs": 50
}
```

#### Scrape a search results URL

```json
{
  "urls": [
    "https://www.glassdoor.com/Job/san-francisco-software-engineer-jobs-SRCH_IL.0,13_IC1147401_KO14,31.htm"
  ]
}
```

#### Combine keyword + URL targets

```json
{
  "keyword": "Product Manager",
  "location": "New York",
  "urls": ["https://www.glassdoor.com/Jobs/Google-Jobs-E9079.htm"],
  "maxJobs": 30
}
```

### Input

**Search:**

| Parameter    | Type   | Default | Description                                  |
| ------------ | ------ | ------- | -------------------------------------------- |
| **keyword**  | string | —       | Job title, skill, or company name            |
| **location** | string | —       | City, state, or country                      |

**Filters:**

| Parameter          | Type     | Default | Description                                                              |
| ------------------ | -------- | ------- | ------------------------------------------------------------------------ |
| **maxJobs**        | number   | 20      | Maximum results per target. Set to 0 for no limit.                       |
| **fromAge**        | number   | any     | Posted within 1, 3, 7, 14, or 30 days                                   |
| **jobType**        | string\[] | any     | `fulltime`, `parttime`, `contract`, `internship`, `temporary`            |
| **seniorityType**  | string\[] | any     | `entrylevel`, `midseniorlevel`, `director`, `executive`                  |
| **remoteWorkType** | string\[] | any     | `1` (Remote), `2` (Hybrid), `3` (On-site)                               |
| **easyApply**      | boolean  | false   | Only Easy Apply jobs                                                     |
| **minSalary**      | number   | —       | Minimum annual salary (local currency)                                   |
| **maxSalary**      | number   | —       | Maximum annual salary (local currency)                                   |
| **radius**         | number   | —       | Search radius in miles: 5, 10, 15, 25, 50, 100                          |
| **employerSizes**  | string\[] | any     | `1to50`, `51to200`, `201to500`, `501to1000`, `1001to5000`, `5001to10000`, `10001+` |
| **postedBy**       | string\[] | any     | `jobPoster` (Employer), `staffingAgency` (Staffing Agency)               |

> Filters apply to all targets (keyword search and URLs).

**URL Lookup:**

| Parameter | Type     | Default | Description                                                                                 |
| --------- | -------- | ------- | ------------------------------------------------------------------------------------------- |
| **urls**  | string\[] | —       | Glassdoor employer pages (`/Jobs/Google-Jobs-E9079.htm`) or search URLs. Optional if keyword is provided. |

### Output

Each job is a single JSON object:

#### Job profile

```json
{
  "jobId": 1010094160099,
  "url": "https://www.glassdoor.com/job-listing/administrative-business-partner-ii-metro-data-centers-google-JV_IC1155091_KO0,53_KE54,60.htm?jl=1010094160099",
  "profile": {
    "title": "Administrative Business Partner II, Metro Data Centers",
    "normalizedTitle": "hr business partner",
    "description": "<div><h3 class=\"jobSectionHeader\"><b>Minimum qualifications:</b></h3><ul>...",
    "descriptionSnippet": "Perform administrative tasks (including managing calendars, booking travel, expenses, and scheduling facilities or equipment), and planning, managing, and…",
    "ageInDays": 13,
    "discoverDate": "2026-04-08T00:00:00",
    "expired": false,
    "easyApply": false,
    "jobType": ["Full-time"],
    "remoteWorkTypes": [],
    "skills": ["Expense management", "Facilities management", "Project management", "Calendar management", "Communication skills"],
    "education": [],
    "yearsOfExperience": "2"
  }
}
```

#### Location

```json
{
  "location": {
    "name": "Moncks Corner, SC",
    "type": "C",
    "city": "Moncks Corner, SC",
    "state": "South Carolina",
    "country": "United States",
    "lat": 33.19583,
    "lng": -80.01333
  }
}
```

#### Compensation

```json
{
  "compensation": {
    "salaryMin": 79000,
    "salaryMax": 112000,
    "salaryMedian": 95500,
    "currency": "USD",
    "period": "ANNUAL",
    "source": "EMPLOYER_PROVIDED"
  }
}
```

#### Employer

```json
{
  "employer": {
    "id": 9079,
    "name": "Google Inc.",
    "shortName": "Google",
    "logoUrl": "https://media.glassdoor.com/sql/9079/google-squarelogo-1441130773284.png",
    "size": "10000+ Employees",
    "sizeCategory": "GIANT",
    "type": "Company - Public",
    "revenue": "$10+ billion (USD)",
    "yearFounded": 1998,
    "headquarters": "Mountain View, CA",
    "industry": "Internet & Web Services",
    "sector": "Information Technology",
    "website": "https://goo.gle/4ehVuXi",
    "ceo": {
      "name": "Sundar Pichai",
      "photoUrl": "https://media.glassdoor.com/people/sql/9079/google-sundar-pichai.png"
    },
    "ratings": {
      "overall": 4.4,
      "careerOpportunities": 4.2,
      "compensationAndBenefits": 4.5,
      "cultureAndValues": 4.2,
      "seniorManagement": 3.9,
      "workLifeBalance": 4.2,
      "ceoRating": 0.82,
      "recommendToFriend": 0.87
    }
  }
}
```

#### Meta

```json
{
  "meta": {
    "seoJobLink": "https://www.glassdoor.com/job-listing/administrative-business-partner-ii-metro-data-centers-google-JV_IC1155091_KO0,53_KE54,60.htm?jl=1010094160099",
    "scrapedAt": "2026-04-22T10:55:07.341Z"
  }
}
```

### Limitations

- Employer data (CEO, ratings, industry, etc.) is the same for all jobs at the same company.
- `maxJobs` is per target, not total across all targets.

# Actor input Schema

## `keyword` (type: `string`):

What job are you looking for? Enter a job title, skill, or company name.

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

Where? Enter a city, state, or country.

## `maxJobs` (type: `integer`):

Maximum number of job listings to scrape. Set to 0 for no limit (all results).

## `fromAge` (type: `string`):

Only return recently posted jobs.

## `jobType` (type: `array`):

Filter by employment type.

## `seniorityType` (type: `array`):

Filter by seniority level.

## `remoteWorkType` (type: `array`):

Filter by work arrangement.

## `easyApply` (type: `boolean`):

Only include jobs with Glassdoor Easy Apply.

## `minSalary` (type: `integer`):

Minimum annual salary filter (in local currency).

## `maxSalary` (type: `integer`):

Maximum annual salary filter (in local currency).

## `radius` (type: `string`):

How far from the location to search.

## `employerSizes` (type: `array`):

Filter by company size.

## `postedBy` (type: `array`):

Filter by who posted the job.

## `urls` (type: `array`):

Look up jobs from specific Glassdoor employer pages (e.g. /Jobs/Google-Jobs-E9079.htm) or search result URLs. Can be combined with keyword search.

## `proxyConfiguration` (type: `object`):

Proxy configuration. Residential proxies reduce the chance of being blocked.

## Actor input object example

```json
{
  "keyword": "Software Engineer",
  "location": "San Francisco, CA",
  "maxJobs": 20,
  "easyApply": false
}
```

# 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 = {
    "keyword": "Software Engineer",
    "location": "San Francisco, CA"
};

// Run the Actor and wait for it to finish
const run = await client.actor("kaix/glassdoor-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 = {
    "keyword": "Software Engineer",
    "location": "San Francisco, CA",
}

# Run the Actor and wait for it to finish
run = client.actor("kaix/glassdoor-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 '{
  "keyword": "Software Engineer",
  "location": "San Francisco, CA"
}' |
apify call kaix/glassdoor-jobs-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Glassdoor Jobs Scraper - Most Comprehensive",
        "description": "🔥 ~$0.1/1K jobs 🔥 Scrape Glassdoor job listings with title, description, salary, location, and company details.",
        "version": "0.1",
        "x-build-id": "Hy5Y86U8Cq456xZXh"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/kaix~glassdoor-jobs-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-kaix-glassdoor-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/kaix~glassdoor-jobs-scraper/runs": {
            "post": {
                "operationId": "runs-sync-kaix-glassdoor-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/kaix~glassdoor-jobs-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-kaix-glassdoor-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",
                "properties": {
                    "keyword": {
                        "title": "Search Keyword",
                        "type": "string",
                        "description": "What job are you looking for? Enter a job title, skill, or company name."
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "Where? Enter a city, state, or country."
                    },
                    "maxJobs": {
                        "title": "Max Results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of job listings to scrape. Set to 0 for no limit (all results).",
                        "default": 20
                    },
                    "fromAge": {
                        "title": "Posted Within",
                        "enum": [
                            "1",
                            "3",
                            "7",
                            "14",
                            "30"
                        ],
                        "type": "string",
                        "description": "Only return recently posted jobs."
                    },
                    "jobType": {
                        "title": "Job Type",
                        "type": "array",
                        "description": "Filter by employment type.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "fulltime",
                                "parttime",
                                "contract",
                                "internship",
                                "temporary"
                            ],
                            "enumTitles": [
                                "Full-time",
                                "Part-time",
                                "Contract",
                                "Internship",
                                "Temporary"
                            ]
                        }
                    },
                    "seniorityType": {
                        "title": "Seniority Level",
                        "type": "array",
                        "description": "Filter by seniority level.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "entrylevel",
                                "midseniorlevel",
                                "director",
                                "executive"
                            ],
                            "enumTitles": [
                                "Entry Level",
                                "Mid-Senior Level",
                                "Director",
                                "Executive"
                            ]
                        }
                    },
                    "remoteWorkType": {
                        "title": "Remote / On-site",
                        "type": "array",
                        "description": "Filter by work arrangement.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "1",
                                "2",
                                "3"
                            ],
                            "enumTitles": [
                                "Remote",
                                "Hybrid",
                                "On-site"
                            ]
                        }
                    },
                    "easyApply": {
                        "title": "Easy Apply Only",
                        "type": "boolean",
                        "description": "Only include jobs with Glassdoor Easy Apply.",
                        "default": false
                    },
                    "minSalary": {
                        "title": "Minimum Salary",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum annual salary filter (in local currency)."
                    },
                    "maxSalary": {
                        "title": "Maximum Salary",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum annual salary filter (in local currency)."
                    },
                    "radius": {
                        "title": "Search Radius",
                        "enum": [
                            "5",
                            "10",
                            "15",
                            "25",
                            "50",
                            "100"
                        ],
                        "type": "string",
                        "description": "How far from the location to search."
                    },
                    "employerSizes": {
                        "title": "Company Size",
                        "type": "array",
                        "description": "Filter by company size.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "1to50",
                                "51to200",
                                "201to500",
                                "501to1000",
                                "1001to5000",
                                "5001to10000",
                                "10001+"
                            ],
                            "enumTitles": [
                                "1-50 employees",
                                "51-200 employees",
                                "201-500 employees",
                                "501-1,000 employees",
                                "1,001-5,000 employees",
                                "5,001-10,000 employees",
                                "10,001+ employees"
                            ]
                        }
                    },
                    "postedBy": {
                        "title": "Posted By",
                        "type": "array",
                        "description": "Filter by who posted the job.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "jobPoster",
                                "staffingAgency"
                            ],
                            "enumTitles": [
                                "Employer",
                                "Staffing Agency"
                            ]
                        }
                    },
                    "urls": {
                        "title": "Glassdoor URLs",
                        "type": "array",
                        "description": "Look up jobs from specific Glassdoor employer pages (e.g. /Jobs/Google-Jobs-E9079.htm) or search result URLs. Can be combined with keyword search.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Proxy configuration. Residential proxies reduce the chance of being blocked."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
