# Steam marketplace item scraper (`panjan/steam-item-search`) Actor

Instantly extract structured pricing and listing data from the Steam Community Market for any game and item

- **URL**: https://apify.com/panjan/steam-item-search.md
- **Developed by:** [Jan](https://apify.com/panjan) (community)
- **Categories:** Integrations, Other, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.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.

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

## 🎮 Steam Marketplace Scraper | 💸 Try it out for free now! No credit card required!
#### Find Steam market items with ease!

With this Apify Actor, you can instantly extract structured pricing and listing data from the Steam Community Market for any game and item. Whether you are building an automated trading tool, analyzing long-term market trends for games like Counter-Strike 2 or Rust, or tracking the real-time prices of your favorite skins, this scraper provides the foundational data you need. 

You can effortlessly monitor inventory supply (active listing counts), track starting market prices, and pull detailed item descriptions to build massive datasets for entire in-game economies directly into your own applications.

### 💡 What does it do?

- Searches the Steam Community Market for items matching your search term and selected game.
- Collects item info: name, hash name, sell price, sale volume, and item icon URL.
- Supports searching within item descriptions.
- Returns clean, structured JSON output for further processing or analysis.

### ⬇️ Input

The actor accepts the following inputs:

- `searchTerm` *(string, required)*: The item name or keyword to search for (e.g., `"AWP"`).
- `Game` *(enum, required)*: The Steam game to filter by.
- `searchDescriptions` *(boolean, optional)*: Check this to include item descriptions in the search.
- `limit` *(integer, optional)*: The maximum number of items to scrape (default: 100).

### 🚀 Usage

1. Provide `searchTerm` and select the `Game` for the game you are interested in.
2. Optionally enable `searchDescriptions` or set the `limit` for max results.
3. Run the actor.
4. Download your scraped Steam item data.
5. Enjoy insights into the Steam market!

### 📤 Output

The actor outputs:

- A dataset of Steam market items matching your criteria.
- Each result includes fields like:
    - `name`: The item's display name
    - `hashName`: The exact market hash name
    - `sellPrice`: The current starting price
    - `sellListings`: The number of active listings
    - `itemUrl`: The URL to the item's market page
    - `imageUrl`: The URL to the item's image

Example output:
```json
[
  {
	"name": "AWP | Exothermic (Minimal Wear)",
	"hashName": "AWP | Exothermic (Minimal Wear)",
	"sellListings": 236,
	"sellPrice": 14.5,
	"sellPriceText": "$14.50",
	"appIcon": "https://cdn.fastly.steamstatic.com/steamcommunity/public/images/apps/730/8dbc71957312bbd3baea65848b545be9eae2a355.jpg",
	"appName": "Counter-Strike 2",
	"itemUrl": "https://steamcommunity.com/market/listings/730/AWP%20%7C%20Exothermic%20(Minimal%20Wear)",
	"imageUrl": "https://community.cloudflare.steamstatic.com/economy/image/i0CoZ81Ui0m-9KwlBY1L_18myuGuq1wfhWSaZgMttyVfPaERSR0Wqmu7LAocGIGz3UqlXOLrxM-vMGmW8VNxu5Dx60noTyLwiYbf9Tte0PSneqF6L-KYMXeR1e1-tfJWQyC0nQlp4W7Xzd-qcH_DO1N0W5FzQuEP5kW8ltfnM-q24wzYgt0RmC_7jSlL5jErvbgX7dER8Q"
}
]
````

# Actor input Schema

## `searchTerm` (type: `string`):

The item name or keyword to search for on the Steam Marketplace.

## `Game` (type: `string`):

The Steam game to filter by.

## `searchDescriptions` (type: `boolean`):

Check this to include item descriptions in the search.

## `limit` (type: `integer`):

The maximum number of items to scrape.

## Actor input object example

```json
{
  "searchTerm": "AWP",
  "Game": "730",
  "searchDescriptions": false,
  "limit": 100
}
```

# Actor output Schema

## `dataset` (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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("panjan/steam-item-search").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("panjan/steam-item-search").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 '{}' |
apify call panjan/steam-item-search --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=panjan/steam-item-search",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Steam marketplace item scraper",
        "description": "Instantly extract structured pricing and listing data from the Steam Community Market for any game and item",
        "version": "0.0",
        "x-build-id": "K1TPsA1Atwmrxc0Hp"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/panjan~steam-item-search/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-panjan-steam-item-search",
                "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/panjan~steam-item-search/runs": {
            "post": {
                "operationId": "runs-sync-panjan-steam-item-search",
                "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/panjan~steam-item-search/run-sync": {
            "post": {
                "operationId": "run-sync-panjan-steam-item-search",
                "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": {
                    "searchTerm": {
                        "title": "Search Term",
                        "type": "string",
                        "description": "The item name or keyword to search for on the Steam Marketplace.",
                        "default": "AWP"
                    },
                    "Game": {
                        "title": "Steam game",
                        "enum": [
                            "730",
                            "570",
                            "1203220",
                            "578080",
                            "2962300",
                            "252490",
                            "753",
                            "440",
                            "304930",
                            "590830",
                            "866510",
                            "614910",
                            "2667970",
                            "282800",
                            "253230",
                            "2773280",
                            "842130",
                            "1961210",
                            "270880",
                            "450860",
                            "290340",
                            "583950",
                            "3165680",
                            "1448230",
                            "582810",
                            "489940",
                            "706990",
                            "2427700",
                            "2923300",
                            "1949740",
                            "618140",
                            "238460",
                            "1142220",
                            "3065920",
                            "550650",
                            "225600",
                            "575950",
                            "709840",
                            "531960",
                            "3419430",
                            "1097430",
                            "598780",
                            "529840",
                            "2808270",
                            "429780",
                            "829080",
                            "615050",
                            "397900",
                            "722960",
                            "302670",
                            "588120",
                            "3263320",
                            "3381010",
                            "2977660",
                            "3218580",
                            "544840",
                            "722670",
                            "3244210",
                            "602770",
                            "2744880",
                            "4261820",
                            "665360",
                            "451600",
                            "1782210",
                            "529240",
                            "1922740",
                            "832680",
                            "447820",
                            "672490",
                            "665550",
                            "707590",
                            "274940",
                            "684130",
                            "663920",
                            "278970",
                            "506730",
                            "401190",
                            "874400",
                            "2882870",
                            "2175780",
                            "322330",
                            "3411670",
                            "2625420",
                            "667530",
                            "3017120",
                            "417860",
                            "530630",
                            "227300",
                            "1092140",
                            "800280",
                            "2957110",
                            "3037410",
                            "519870",
                            "391240",
                            "1033410",
                            "364640",
                            "3406910",
                            "3218600",
                            "2963550",
                            "546170",
                            "1086410",
                            "571740",
                            "431240",
                            "2336720",
                            "369990",
                            "914260",
                            "1520380",
                            "581740",
                            "679990",
                            "433530",
                            "269210",
                            "374280",
                            "2595860",
                            "457960",
                            "560080",
                            "348670",
                            "363360",
                            "513510",
                            "518150",
                            "1628760",
                            "232090",
                            "724430",
                            "844870",
                            "634340",
                            "1635450",
                            "3022640",
                            "546930",
                            "216150",
                            "949000",
                            "534210",
                            "299740",
                            "3628960",
                            "749830",
                            "323850",
                            "1371580",
                            "4920",
                            "471550",
                            "3714370",
                            "885570",
                            "643270",
                            "2205600",
                            "3468420",
                            "218620",
                            "1859860",
                            "2796010",
                            "1986390",
                            "238960",
                            "1521580",
                            "321360",
                            "2125160",
                            "508710",
                            "774861",
                            "3879670",
                            "654670",
                            "338170",
                            "764030",
                            "656610",
                            "1280770",
                            "517710",
                            "328070",
                            "574180",
                            "1488310",
                            "2055500",
                            "1557990",
                            "663690",
                            "270450",
                            "843660",
                            "1070330",
                            "366440",
                            "464350",
                            "2347910",
                            "705710",
                            "684580",
                            "530300",
                            "485610",
                            "2373990",
                            "528970",
                            "244850",
                            "2618710",
                            "207140",
                            "454580",
                            "381250",
                            "250820",
                            "264710",
                            "418030",
                            "2686690",
                            "321400",
                            "3454830",
                            "440730",
                            "3354260",
                            "2285150",
                            "3221750",
                            "2390260",
                            "787760",
                            "859700",
                            "654700",
                            "1575870",
                            "391460",
                            "562260",
                            "3119520",
                            "431960",
                            "230410",
                            "3684500",
                            "894060",
                            "709870",
                            "308080",
                            "424370",
                            "552990",
                            "625340",
                            "2414190",
                            "263920",
                            "840140",
                            "2845270",
                            "2845250",
                            "2932930",
                            "2827560",
                            "2854290",
                            "3037060",
                            "3376470",
                            "1030430",
                            "1229730",
                            "3111510",
                            "2188670",
                            "1427640",
                            "3069890",
                            "3102380",
                            "3231090",
                            "3217180",
                            "3103760",
                            "3165510",
                            "1464540",
                            "3752500",
                            "3056600",
                            "3066470",
                            "1105130",
                            "3690460",
                            "2407300",
                            "4362600",
                            "3070180",
                            "3092750",
                            "3062580",
                            "1412190",
                            "3067770",
                            "3279000",
                            "1530440",
                            "1156670",
                            "3077790",
                            "3101160",
                            "1128980",
                            "3156590",
                            "3058700",
                            "3084590",
                            "3057390",
                            "3085950",
                            "3013470",
                            "894010",
                            "2968430",
                            "3126880",
                            "3619310",
                            "1007950",
                            "845870",
                            "3154520",
                            "2578820",
                            "1747430",
                            "2249700",
                            "3683690",
                            "3380740",
                            "3692260",
                            "3071740",
                            "3249680",
                            "3131610",
                            "3073460",
                            "2487680",
                            "3171620",
                            "1959380",
                            "3857120",
                            "2408310",
                            "3078390",
                            "797180",
                            "2504460",
                            "3114760",
                            "4567300",
                            "3118290",
                            "2732980",
                            "3059840",
                            "3383700",
                            "2386560",
                            "3064990",
                            "616830",
                            "3284020",
                            "1350560",
                            "839330",
                            "3231850",
                            "3083200",
                            "3169620",
                            "1306860",
                            "3099520",
                            "3947490",
                            "3918190",
                            "3074090",
                            "3401350",
                            "3070890",
                            "3059750",
                            "3063130",
                            "3065860",
                            "3070500",
                            "2731830",
                            "3965810",
                            "3995470",
                            "3075700",
                            "3083090",
                            "3071010",
                            "1190990",
                            "1187920",
                            "3064950",
                            "3070330",
                            "4038990",
                            "3084990",
                            "3066230",
                            "3015610",
                            "4033920",
                            "3490740",
                            "3494150",
                            "3059300",
                            "3062750",
                            "1284150",
                            "3251130",
                            "3572410",
                            "2184560",
                            "1858710",
                            "3077030",
                            "3702960",
                            "4044170",
                            "3058790",
                            "3077710",
                            "3836520",
                            "1862210",
                            "2271320",
                            "3069620",
                            "3076520",
                            "3060200",
                            "3083270",
                            "3069470",
                            "1389270",
                            "3186480",
                            "1462860",
                            "4181800",
                            "4383450",
                            "1155580",
                            "3154360",
                            "3057940",
                            "4160160",
                            "842980",
                            "3992170",
                            "3541450",
                            "2784840",
                            "3182800",
                            "890180",
                            "890710",
                            "3070920",
                            "3077360",
                            "3206030",
                            "3412270",
                            "1541850",
                            "1417420",
                            "1590030",
                            "2656740",
                            "979530",
                            "2182480",
                            "2251380",
                            "3105620",
                            "2088330",
                            "1177540",
                            "3089760",
                            "3185460",
                            "3120700",
                            "1067810",
                            "3073680",
                            "3088770",
                            "3688330",
                            "2288310",
                            "2996990",
                            "2124390",
                            "2986340",
                            "3166930",
                            "3402210",
                            "3749270",
                            "3105760",
                            "1596950",
                            "3061650",
                            "3055420",
                            "1587070",
                            "3076110",
                            "3950790",
                            "1098130",
                            "3090790",
                            "3055390",
                            "3332730",
                            "2857580",
                            "3068100",
                            "4401660",
                            "1057450",
                            "3611950",
                            "3090870",
                            "2631240",
                            "1003070",
                            "2794860",
                            "3079150",
                            "3621150",
                            "3102030",
                            "4348640",
                            "4350350",
                            "2126790",
                            "3046430",
                            "2376170",
                            "3892360",
                            "3022740",
                            "3099540",
                            "4215780",
                            "3161510",
                            "3479160",
                            "3056370",
                            "1784410",
                            "3742120",
                            "3056640",
                            "3082960",
                            "3062030",
                            "1841100",
                            "1680550",
                            "3383130",
                            "3383430",
                            "2826540",
                            "2587950",
                            "3220730",
                            "3173050",
                            "3077280",
                            "3066120",
                            "3880640",
                            "3069860",
                            "3679380",
                            "876780",
                            "931360",
                            "922130",
                            "1107440",
                            "3523390",
                            "3649730",
                            "3066830",
                            "3072100",
                            "3064270",
                            "1845830",
                            "796340",
                            "2916260",
                            "4009030",
                            "3072000",
                            "1285870",
                            "871160",
                            "3121070",
                            "3108710",
                            "3700450",
                            "2778570",
                            "986220",
                            "3278860",
                            "1397240",
                            "3868850",
                            "3070830",
                            "1840660",
                            "3737600",
                            "1456420",
                            "704020",
                            "1706770",
                            "3065090",
                            "3050630",
                            "3114470",
                            "3057850",
                            "3347520",
                            "1350570",
                            "3061500",
                            "2886660",
                            "1480930",
                            "3104570",
                            "3062260",
                            "3080790",
                            "1882880",
                            "3566300",
                            "4057330",
                            "2084940",
                            "1980390",
                            "3569590",
                            "3097670",
                            "1644200",
                            "3105670",
                            "3374340",
                            "4019450",
                            "4090390",
                            "3069530",
                            "3301260",
                            "3058800",
                            "3946790",
                            "3060300",
                            "1026670",
                            "1894470",
                            "2150950",
                            "2146790",
                            "3890170",
                            "1209140",
                            "3109830",
                            "3158020",
                            "3112400",
                            "3060080",
                            "3125030",
                            "3094350",
                            "3088990",
                            "3090990",
                            "3064010",
                            "3407570",
                            "3076350",
                            "2953230",
                            "3068320",
                            "3248550",
                            "2202770",
                            "3062410",
                            "3050010",
                            "805270",
                            "2989820",
                            "3433030",
                            "2716030",
                            "1219480",
                            "1506810",
                            "3080810",
                            "3122740",
                            "1904820",
                            "936800",
                            "2257910",
                            "4230350",
                            "4237190",
                            "3075690",
                            "3067050",
                            "3077780",
                            "2936160",
                            "2024950",
                            "3552910",
                            "3069990",
                            "1513860",
                            "3048820",
                            "3474060",
                            "1073130",
                            "1427760",
                            "4032260",
                            "3933360",
                            "2987860",
                            "3064610",
                            "2462430",
                            "1179010",
                            "1980420",
                            "3235040",
                            "2585860",
                            "911230",
                            "916510",
                            "3771350",
                            "3064160",
                            "3716880",
                            "3711980",
                            "3361280",
                            "3066320",
                            "405680",
                            "2626760",
                            "1809420",
                            "3054490",
                            "2782530",
                            "3674050",
                            "2006160",
                            "3505930",
                            "3338320",
                            "590790",
                            "3820630",
                            "875670",
                            "3601700",
                            "3093850",
                            "2060110",
                            "1297090",
                            "3439250",
                            "2154190",
                            "3557090",
                            "3688790",
                            "3359260",
                            "3806060",
                            "4007840",
                            "1403280",
                            "3804790",
                            "1855180",
                            "3301740",
                            "3526120",
                            "3526140",
                            "2169000",
                            "1929530",
                            "3047030",
                            "1503400",
                            "1651680",
                            "2863000",
                            "3701320",
                            "2641180",
                            "3198240",
                            "3504960",
                            "1353670",
                            "3067650",
                            "1726530",
                            "3083880",
                            "3134560",
                            "1538670",
                            "1893350",
                            "1572120",
                            "3321180",
                            "3074340",
                            "749820",
                            "3466320",
                            "1886120",
                            "3058030",
                            "854770",
                            "3188910",
                            "3109050",
                            "1362990",
                            "3759390",
                            "3427660",
                            "3413340",
                            "2373450",
                            "3059220",
                            "3250310",
                            "3369300",
                            "3832630",
                            "3144410",
                            "1163690",
                            "3863380",
                            "1743390",
                            "2776480",
                            "2699240",
                            "3095590",
                            "1890340",
                            "2799360",
                            "771950",
                            "3332640",
                            "4013490",
                            "3196080"
                        ],
                        "type": "string",
                        "description": "The Steam game to filter by.",
                        "default": "730"
                    },
                    "searchDescriptions": {
                        "title": "Search Descriptions",
                        "type": "boolean",
                        "description": "Check this to include item descriptions in the search.",
                        "default": false
                    },
                    "limit": {
                        "title": "Max Results",
                        "minimum": 1,
                        "type": "integer",
                        "description": "The maximum number of items to scrape.",
                        "default": 100
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
