# Finstat.sk Company Data Scraper (`solidcode/finstat-sk-scraper`) Actor

\[💰 $1.80 / 1K] Extract Slovak company profiles and financials from Finstat.sk. Search by name or IČO for identity (IČO, DIČ, VAT, legal form, address), multi-year revenue & profit, current-year assets & equity, SK NACE codes, employee ranges, and risk flags (debts, state claims, bankruptcy).

- **URL**: https://apify.com/solidcode/finstat-sk-scraper.md
- **Developed by:** [SolidCode](https://apify.com/solidcode) (community)
- **Categories:** Developer tools, Agents, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.80 / 1,000 results

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

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/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

## Finstat.sk Company Data Scraper

Pull structured company data from Finstat.sk at scale — legal identity, official tax and VAT identifiers, multi-year revenue and profit history, industry classification, employee bands, and public risk flags for any Slovak company. Search by company name when you don't have the number, or look up exact 8-digit IČO identifiers and profile URLs. Built for CEE market researchers, sales and lead-generation teams, and credit-risk and due-diligence analysts who need Slovak company financials and risk signals without paying for a premium registry seat.

### Why This Scraper?

- **Three ways to find a company** — search by company name or keyword, look up an exact 8-digit IČO, or paste a Finstat.sk profile URL. Competing tools are IČO-only, so you're stuck if all you have is a name like "ESET" or "Slovnaft".
- **5-year revenue and profit history** — every record carries a `financials[]` array with year-by-year revenue and profit (roughly 2021–2025), not a single hard-coded snapshot.
- **Four public risk flags on every company** — debts and arrears, state and tax claims, bankruptcy or restructuring, and temporary protection, each returned as a clean true/false boolean for instant lead qualification.
- **Three official identifiers** — IČO (8-digit company number), DIČ (tax number), and IČ DPH / VAT number, so you can match records against invoices, VAT filings, and CRM entries.
- **SK NACE industry classification** — both the numeric SK NACE code and its full activity-description text label, ready for sector filtering and segmentation.
- **Latest-year financial snapshot** — revenue, profit, total assets, equity, debt ratio, and gross margin as typed numbers, with `revenueYear` telling you exactly which reporting year they cover.
- **Full legal registration details** — legal form, registration entry (court, section, and insert), ownership type, establishment date, and registered seat with a parsed city field.
- **Employee band with a parsed lower bound** — the published headcount range (e.g. "1000-1999") plus a numeric `minEmployees` value you can sort and filter on.
- **One billable row per company** — the multi-year history is nested inside a single record, so a company with 5 or 15 reporting years still counts as one result.

### Use Cases

**Market Research**
- Map the financial profile of entire Slovak industries by SK NACE code
- Benchmark revenue, profit, and margin across companies in the same sector
- Track multi-year growth trends using year-by-year financial history
- Size a market by counting active companies and their employee bands

**Lead Generation & Sales Prospecting**
- Build prospect lists filtered by revenue, employee band, or legal form
- Enrich CRM records with IČO, DIČ, and VAT numbers for accurate matching
- Prioritize outreach to healthy companies with no debts or claims
- Target companies by city and registered seat for territory planning

**Credit & Risk Assessment**
- Screen counterparties against four public risk flags before extending terms
- Flag companies with recorded debts, state claims, or active bankruptcy
- Monitor debt ratio and equity trends year over year
- Spot companies under temporary protection early

**M&A & Due Diligence**
- Pull a target's full multi-year revenue and profit trajectory in one run
- Verify legal form, registration entry, and ownership type
- Cross-check tax and VAT registration status
- Assemble comparables sets by sector and size

**Data Enrichment & Integration**
- Append financial and registration data to an existing company database
- Feed Slovak company data into analytics dashboards and scoring models
- Keep records fresh with the latest reporting-year figures

### Getting Started

#### Look Up a Single Company by IČO

The fastest, most exact way to start — one IČO returns one fully enriched record:

```json
{
    "icos": ["31322832"]
}
````

#### Search by Company Name

When you only have a name or keyword, search returns every matching company, enriched:

```json
{
    "companyNames": ["ESET", "Tatra banka"],
    "maxResults": 50
}
```

#### Identity-Only Run (No Financial History)

Turn off multi-year history for a leaner, faster pull of just identity and the latest-year snapshot:

```json
{
    "companyNames": ["Bratislava"],
    "includeFinancials": false,
    "maxResults": 200
}
```

#### Advanced — Mix Names, IČOs, and URLs

Combine every input type in a single run; overlapping matches are automatically de-duplicated:

```json
{
    "companyNames": ["Slovnaft"],
    "icos": ["31322832", "31333532"],
    "startUrls": [
        { "url": "https://finstat.sk/31411801" }
    ],
    "includeFinancials": true,
    "maxResults": 500
}
```

### Input Reference

#### What to Scrape

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `companyNames` | string\[] | `["ESET"]` | Company names or keywords to search (e.g. "ESET", "Slovnaft", "Tatra banka"). Each entry is searched separately and its matching companies are returned, fully enriched. Use when you know the name but not the IČO. |
| `icos` | string\[] | `[]` | Exact 8-digit Slovak IČO identifiers to look up directly (e.g. "31322832"). Each IČO returns one company record. |
| `startUrls` | URL\[] | `[]` | Direct Finstat.sk company profile URLs to scrape as-is (e.g. `https://finstat.sk/31322832`). |

#### Output Detail

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `includeFinancials` | boolean | `true` | Include the full multi-year revenue and profit history for each company. Turn off for faster, leaner runs that keep only the latest-year figures plus company identity. |

#### Limits

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `maxResults` | integer | `100` | Maximum total company records to collect across all names, IČO identifiers, and URLs combined. Set to `0` to collect as many as possible. Exact IČO and URL lookups are always scraped in full. |

### Output

Each company is a single dataset row. Here is a representative record with financial history enabled:

```json
{
    "companyName": "SLOVNAFT, a.s.",
    "ico": "31322832",
    "dic": "2020376280",
    "vatId": "SK2020376280",
    "legalForm": "Akciová spoločnosť",
    "status": "Active",
    "establishedDate": "1992-05-05",
    "address": "Vlčie hrdlo 1, 824 12 Bratislava",
    "city": "Bratislava",
    "registration": "Okresný súd Bratislava I, oddiel: Sa, vložka č. 426/B",
    "ownershipType": "Súkromné zahraničné vlastníctvo",
    "skNace": "19200",
    "skNaceText": "Výroba rafinovaných ropných produktov",
    "employeeRange": "1000-1999",
    "minEmployees": 1000,
    "revenue": 5612836000,
    "profit": 195790000,
    "revenueYear": 2025,
    "assets": 2665196000,
    "equity": 1580420000,
    "debtRatio": 40.68,
    "grossMargin": 3.49,
    "hasDebts": false,
    "hasStateClaims": false,
    "isBankrupt": false,
    "hasTemporaryProtection": false,
    "financials": [
        { "year": 2021, "revenue": 3894120000, "profit": 142300000 },
        { "year": 2022, "revenue": 6521030000, "profit": 210500000 },
        { "year": 2023, "revenue": 5983450000, "profit": 188900000 },
        { "year": 2024, "revenue": 5744210000, "profit": 176200000 },
        { "year": 2025, "revenue": 5612836000, "profit": 195790000 }
    ],
    "url": "https://finstat.sk/31322832",
    "scrapedAt": "2026-07-16T14:30:00Z"
}
```

#### Company Identity

| Field | Type | Description |
|-------|------|-------------|
| `companyName` | string | Registered company name |
| `ico` | string | IČO — 8-digit Slovak company identifier (kept as a string, leading zeros preserved) |
| `dic` | string | DIČ — tax identification number |
| `vatId` | string | IČ DPH — VAT identification number (e.g. `SK2020376280`); `null` if the company is not VAT-registered |
| `legalForm` | string | Legal form (e.g. "Akciová spoločnosť", "Spoločnosť s ručením obmedzeným") |
| `status` | string | Company status (Active, In bankruptcy or restructuring, Terminated) |
| `establishedDate` | string | Establishment date (ISO `YYYY-MM-DD`) |
| `address` | string | Registered seat (sídlo), full address |
| `city` | string | City parsed from the registered seat |
| `registration` | string | Register entry: court, section (oddiel), and insert (vložka) |
| `ownershipType` | string | Ownership type (e.g. private domestic or foreign) |
| `skNace` | string | SK NACE industry code |
| `skNaceText` | string | SK NACE activity description |
| `employeeRange` | string | Published employee band (e.g. "1000-1999") |
| `minEmployees` | integer | Lower bound of the employee band |
| `url` | string | Finstat.sk company profile URL |
| `scrapedAt` | string | ISO-8601 timestamp of extraction |

#### Financials

| Field | Type | Description |
|-------|------|-------------|
| `revenue` | number | Latest available year's revenue (tržby) |
| `profit` | number | Latest available year's profit (zisk); may be negative |
| `revenueYear` | integer | Reporting year the latest `revenue` and `profit` apply to |
| `assets` | number | Latest-year total assets |
| `equity` | number | Latest-year equity |
| `debtRatio` | number | Latest-year total debt ratio (percentage) |
| `grossMargin` | number | Latest-year gross margin (percentage) |
| `financials` | object\[] | Multi-year history; each entry is `{ year, revenue, profit }`. Included only when `includeFinancials` is on |

#### Risk Flags

| Field | Type | Description |
|-------|------|-------------|
| `hasDebts` | boolean | Company has recorded debts or arrears (dlhy a nedoplatky) |
| `hasStateClaims` | boolean | State or tax claims are recorded against the company (pohľadávky štátu) |
| `isBankrupt` | boolean | A bankruptcy or restructuring proceeding is recorded (konkurz) |
| `hasTemporaryProtection` | boolean | The company is under temporary protection (dočasná ochrana) |

### Tips for Best Results

- **IČO lookups are exact and always complete** — one IČO returns one record, and IČO and URL inputs are scraped in full even beyond `maxResults`. Use them whenever you already have the company number.
- **Name search paginates** — a broad keyword like "Bratislava" matches thousands of companies. Set `maxResults` to cap volume, or use a more specific name to narrow the results.
- **Turn off `includeFinancials` for identity-only pulls** — when you only need names, identifiers, and the latest snapshot, switching it off makes runs faster and leaner.
- **Pre-qualify leads with the four risk flags** — filter on `hasDebts`, `hasStateClaims`, `isBankrupt`, and `hasTemporaryProtection` to separate healthy prospects from distressed companies before you reach out.
- **A `null` vatId is itself a signal** — companies below the VAT-registration threshold or newly formed often return no IČ DPH, which can help you spot small or early-stage businesses.
- **Use `revenueYear` to align comparisons** — the latest reporting year varies by company, so read `revenueYear` before benchmarking one company's `revenue` against another's.
- **Combine input types in one run** — mix names, IČOs, and URLs freely; overlapping matches are de-duplicated so each company appears once.

### Pricing

**From $1.80 per 1,000 results** — richer Slovak company data (name search, full identity, multi-year financials, and risk flags) at a lower price than IČO-only alternatives. Bronze, Silver, and Gold subscribers pay progressively less; the table below shows total cost at each discount tier.

| Results | No discount | Bronze | Silver | Gold |
|---------|-------------|--------|--------|------|
| 100 | $0.22 | $0.20 | $0.19 | $0.18 |
| 1,000 | $2.15 | $2.00 | $1.90 | $1.80 |
| 10,000 | $21.50 | $20.00 | $19.00 | $18.00 |
| 100,000 | $215.00 | $200.00 | $190.00 | $180.00 |

A "result" is one company record — the multi-year `financials[]` history is embedded in that single row, so you are never billed per reporting year. No compute or time-based charges — you pay per result, plus a small fixed per-run start fee.

### Integrations

Export data in JSON, CSV, Excel, XML, or RSS. Connect to 1,500+ apps via:

- **Zapier** / **Make** / **n8n** — Workflow automation
- **Google Sheets** — Direct spreadsheet export
- **Slack** / **Email** — Notifications on new results
- **Webhooks** — Trigger custom APIs on run completion
- **Apify API** — Full programmatic access

### Legal & Ethical Use

This actor collects only publicly available company data that Finstat.sk displays anonymously, sourced from official Slovak public registers. It does not access paywalled, login-only, or premium fields such as officer and shareholder names, subsidiary lists, or full filing histories. Users are responsible for complying with applicable laws and Finstat.sk's Terms of Service. Use the data for legitimate research, business intelligence, and compliance purposes only, and handle any company information in line with applicable data-protection regulations.

# Actor input Schema

## `companyNames` (type: `array`):

Company names or keywords to search on Finstat.sk (e.g. "ESET", "Slovnaft", "Tatra banka"). Each entry is searched separately and its matching companies are returned, fully enriched. Use this when you know the company name but not its IČO. Name searches return up to ~1,800 companies per name; to target one specific company, use its exact IČO instead.

## `icos` (type: `array`):

Exact 8-digit Slovak IČO identifiers to look up directly (e.g. "31333532"). Each IČO returns one company record. Use this when you already have the company numbers.

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

Direct Finstat.sk company profile URLs to scrape as-is (e.g. https://finstat.sk/31333532). Use this to target exact companies you already have links to.

## `includeFinancials` (type: `boolean`):

Include the year-by-year revenue and profit history for each company. Current-year assets and equity are always included either way. Turn this off for faster, leaner runs that keep only the latest-year figures plus company identity.

## `maxResults` (type: `integer`):

Maximum total number of company records to collect across all names, IČO identifiers, and URLs combined. Default 100 — increase for bigger runs, or set to 0 to collect as many as possible. Exact IČO and URL lookups are always scraped in full.

## Actor input object example

```json
{
  "companyNames": [
    "ESET"
  ],
  "icos": [],
  "startUrls": [],
  "includeFinancials": true,
  "maxResults": 100
}
```

# Actor output Schema

## `overview` (type: `string`):

Table of scraped companies with key fields.

# 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 = {
    "companyNames": [
        "ESET"
    ],
    "icos": [],
    "startUrls": [],
    "includeFinancials": true,
    "maxResults": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("solidcode/finstat-sk-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 = {
    "companyNames": ["ESET"],
    "icos": [],
    "startUrls": [],
    "includeFinancials": True,
    "maxResults": 100,
}

# Run the Actor and wait for it to finish
run = client.actor("solidcode/finstat-sk-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 '{
  "companyNames": [
    "ESET"
  ],
  "icos": [],
  "startUrls": [],
  "includeFinancials": true,
  "maxResults": 100
}' |
apify call solidcode/finstat-sk-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Finstat.sk Company Data Scraper",
        "description": "[💰 $1.80 / 1K] Extract Slovak company profiles and financials from Finstat.sk. Search by name or IČO for identity (IČO, DIČ, VAT, legal form, address), multi-year revenue & profit, current-year assets & equity, SK NACE codes, employee ranges, and risk flags (debts, state claims, bankruptcy).",
        "version": "1.0",
        "x-build-id": "DGcl7R9xTODnLocDt"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/solidcode~finstat-sk-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-solidcode-finstat-sk-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/solidcode~finstat-sk-scraper/runs": {
            "post": {
                "operationId": "runs-sync-solidcode-finstat-sk-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/solidcode~finstat-sk-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-solidcode-finstat-sk-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": {
                    "companyNames": {
                        "title": "Company names or keywords",
                        "type": "array",
                        "description": "Company names or keywords to search on Finstat.sk (e.g. \"ESET\", \"Slovnaft\", \"Tatra banka\"). Each entry is searched separately and its matching companies are returned, fully enriched. Use this when you know the company name but not its IČO. Name searches return up to ~1,800 companies per name; to target one specific company, use its exact IČO instead.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "icos": {
                        "title": "IČO identifiers",
                        "type": "array",
                        "description": "Exact 8-digit Slovak IČO identifiers to look up directly (e.g. \"31333532\"). Each IČO returns one company record. Use this when you already have the company numbers.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "startUrls": {
                        "title": "Finstat.sk company URLs",
                        "type": "array",
                        "description": "Direct Finstat.sk company profile URLs to scrape as-is (e.g. https://finstat.sk/31333532). Use this to target exact companies you already have links to.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "includeFinancials": {
                        "title": "Include multi-year financials",
                        "type": "boolean",
                        "description": "Include the year-by-year revenue and profit history for each company. Current-year assets and equity are always included either way. Turn this off for faster, leaner runs that keep only the latest-year figures plus company identity.",
                        "default": true
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum total number of company records to collect across all names, IČO identifiers, and URLs combined. Default 100 — increase for bigger runs, or set to 0 to collect as many as possible. Exact IČO and URL lookups are always scraped in full.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
