# Njuškalo Scraper (`solidcode/njuskalo-hr-scraper`) Actor

\[💰 $1.4 / 1K] Extract classified listings from Njuškalo.hr, Croatia's largest marketplace. Get titles, prices, photos, locations, seller names and phone numbers, and attributes for cars, real estate, electronics, fashion, jobs, and more. Search by keyword or paste any category or listing URL.

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

## Pricing

from $1.40 / 1,000 results

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

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

## What's an Apify Actor?

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

## How to integrate an Actor?

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

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

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Njuškalo Scraper

Pull classified listings from Njuškalo.hr at scale — titles, prices, full descriptions, every listing photo, exact map coordinates, category attributes, and seller phone numbers across cars, real estate, electronics, fashion, jobs, and services. Type a Croatian keyword, pick a category, or paste any Njuškalo URL and get one clean row per ad. Built for marketplace analysts, lead-generation teams, and resellers who need fresh Croatian classifieds data without copying ads off the site by hand.

### Why This Scraper?

- **All 13 Njuškalo categories in one actor** — Real Estate, Cars, Other Vehicles, Mobile Phones, Computers, Electronics, Fashion & Clothing, Home & Garden, Sports & Leisure, Baby & Kids, Jobs, Services, and Animals & Pets, plus an "All Categories" default that searches everything.
- **Three ways to target listings** — type a Croatian keyword (e.g. "Audi A4", "iPhone 15"), pick a category from the dropdown, or paste any category, search, filter, region, or single-listing URL — filters baked into the URL are applied automatically.
- **Seller phone numbers on detail-enriched ads** — when the seller published a number, it is captured through Njuškalo's own contact channel and returned as a clean field, ready for outreach lists.
- **Every photo in full resolution** — up to 25+ deduplicated image URLs per ad (verified runs returned ~13 photos per listing on average), not just the thumbnail.
- **Complete, untruncated descriptions** — the full listing body text, never the ~160-character preview most scrapers settle for.
- **Exact map coordinates plus location label** — latitude, longitude, an `locationApproximate` flag, and the city/region name on every detail-enriched listing.
- **Category-specific attributes auto-flattened** — mileage, number of rooms, floor area, brand, condition, and every other key/value the seller filled in, structured per listing.
- **Four sort orders for keyword searches** — Most Relevant, Newest First, Cheapest First, or Most Expensive First, so you collect exactly the slice you need.
- **Private-vs-business seller flag** — every row is tagged as a private seller or a registered store, with seller name and profile URL.

### Use Cases

**Market & Price Research**
- Track asking prices for a model or category across Croatia over time
- Compare cheapest-first vs. most-expensive-first runs to map a category's price band
- Benchmark real-estate prices by region using pasted filter URLs
- Build a dataset of current inventory in any category

**Lead Generation**
- Build outreach lists of private sellers with published phone numbers
- Separate business stores from private sellers using the seller-type flag
- Collect seller profile URLs for follow-up across a category
- Target high-value categories (cars, real estate) for brokerage outreach

**Reselling & Arbitrage**
- Spot underpriced electronics and fashion the moment they post with "Newest First"
- Monitor a keyword (e.g. "Commodore 64", "Tamagotchi") for collectible flips
- Compare a model's listings to find the best buy by location and photos
- Pull full descriptions and photos to vet condition before contacting a seller

**Competitive & Catalog Intelligence**
- Map how many active listings a competing store runs and at what prices
- Feed structured car or property attributes into pricing models
- Track new-listing velocity in a category to gauge demand
- Enrich an existing catalog with live Croatian-market pricing

### Getting Started

#### Search by Keyword

The simplest way to start — type what you are looking for:

```json
{
    "searchKeywords": ["Audi A4"],
    "maxResults": 50
}
````

#### Browse a Category by URL

Paste any Njuškalo category, search, or filter URL — embedded filters are kept:

```json
{
    "startUrls": ["https://www.njuskalo.hr/prodaja-stanova"],
    "maxResults": 100,
    "includeListingDetails": true
}
```

#### Filtered, Sorted Keyword Search

```json
{
    "searchKeywords": ["iPhone 15"],
    "category": "mobiteli",
    "sortBy": "cheapest",
    "maxResults": 200
}
```

#### Full-Featured Example

Mix URLs and keywords, scope the search, sort by newest, and pull full details:

```json
{
    "startUrls": ["https://www.njuskalo.hr/auti"],
    "searchKeywords": ["Golf", "Passat"],
    "category": "automobili",
    "sortBy": "newest",
    "maxResults": 500,
    "includeListingDetails": true
}
```

### Input Reference

#### What to Scrape

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `startUrls` | array | `["https://www.njuskalo.hr/prodaja-stanova"]` | Paste Njuškalo.hr URLs directly. Works with category pages, filtered or region pages, search-result pages, and direct listing pages. Any filters already in the URL (price, location, sort, keywords) are applied automatically. Mix as many URLs as you like. |
| `searchKeywords` | array | `[]` | Type what you are looking for (e.g. 'Audi A4', 'iPhone 15', 'apartment Zagreb'). Each keyword runs a Njuškalo search across all categories. No need to build URLs by hand. |

#### Search Filters

These apply only to keyword searches — pasted URLs carry their own filters.

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `category` | select | `All Categories` | Limit keyword searches to one Njuškalo category. Options: All Categories, Real Estate, Cars, Other Vehicles, Mobile Phones, Computers, Electronics, Fashion & Clothing, Home & Garden, Sports & Leisure, Baby & Kids, Jobs, Services, Animals & Pets. |
| `sortBy` | select | `Most Relevant` | Order in which keyword-search listings are collected: Most Relevant, Newest First, Cheapest First, or Most Expensive First. |

#### Options

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `maxResults` | integer | `100` | Maximum number of listings to collect across all URLs and keywords combined. Set to 0 for unlimited. Start with 20-50 to test, then increase. |
| `includeListingDetails` | boolean | `true` | Open each listing's detail page to capture the full description, all photos, seller name and phone, exact location, and category-specific attributes (mileage, rooms, size, etc.). Slower but much richer. When off, only the data visible on result pages is returned. |

### Output

Each listing is one flat row. Here is a representative result with full details enabled:

```json
{
    "id": "47812093",
    "title": "Audi A4 2.0 TDI S-line, 2019., reg. do 09/2025",
    "price": 18500,
    "currency": "EUR",
    "priceText": "18.500 €",
    "priceHidden": false,
    "description": "Prodajem Audi A4 u odličnom stanju, prvi vlasnik, servisna knjižica, redovito održavan...",
    "categoryName": "Osobni automobili",
    "categorySlug": "auti",
    "locationName": "Zagreb, Trešnjevka",
    "latitude": 45.8081,
    "longitude": 15.9619,
    "locationApproximate": true,
    "images": [
        "https://www.njuskalo.hr/image-w920x690/auti/audi-a4-1.jpg",
        "https://www.njuskalo.hr/image-w920x690/auti/audi-a4-2.jpg"
    ],
    "mainImage": "https://www.njuskalo.hr/image-w920x690/auti/audi-a4-1.jpg",
    "attributes": {
        "Marka": "Audi",
        "Model": "A4",
        "Godina proizvodnje": "2019",
        "Prijeđeni kilometri": "92000",
        "Vrsta goriva": "Dizel"
    },
    "sellerName": "AutoKuća Marić",
    "sellerType": "business",
    "sellerPhone": "+385 91 234 5678",
    "sellerUrl": "https://www.njuskalo.hr/korisnik/autokuca-maric",
    "sellerVerified": true,
    "views": null,
    "publishedAt": "2026-06-22T10:35:00",
    "expiresAt": "2026-07-22T10:35:00",
    "url": "https://www.njuskalo.hr/auti/audi-a4-2019-oglas-47812093",
    "searchQuery": "Audi A4",
    "scrapedAt": "2026-06-24T14:30:00Z"
}
```

#### Core Fields

| Field | Type | Description |
|-------|------|-------------|
| `id` | string | Njuškalo listing / ad id |
| `title` | string | Listing title |
| `categoryName` | string | Human-readable category name |
| `categorySlug` | string | Category URL alias |
| `description` | string | Full listing description (detail mode) |
| `url` | string | Canonical listing URL |
| `publishedAt` | string | Publish date/time (ISO 8601) |
| `expiresAt` | string | Listing expiry date/time |
| `views` | integer | View count, when the listing exposes one |
| `searchQuery` | string | The keyword or source that produced this row |
| `scrapedAt` | string | ISO 8601 timestamp of extraction |

#### Price

| Field | Type | Description |
|-------|------|-------------|
| `price` | number | Numeric price (null when hidden or "on request") |
| `currency` | string | Currency code (EUR) |
| `priceText` | string | Price exactly as shown on the site (e.g. "18.500 €") |
| `priceHidden` | boolean | True when the seller hid the price ("Po dogovoru") |

#### Location

| Field | Type | Description |
|-------|------|-------------|
| `locationName` | string | Location label (city / region) |
| `latitude` | number | Latitude (may be approximate) |
| `longitude` | number | Longitude (may be approximate) |
| `locationApproximate` | boolean | Whether the coordinates are approximate |

#### Media & Attributes

| Field | Type | Description |
|-------|------|-------------|
| `images` | string\[] | All listing photo URLs, deduplicated, full resolution |
| `mainImage` | string | Primary photo URL |
| `attributes` | object | Category-specific key/values (mileage, rooms, size, brand, etc.) |

#### Seller

| Field | Type | Description |
|-------|------|-------------|
| `sellerName` | string | Seller or store name |
| `sellerType` | string | Private seller vs. business / store |
| `sellerPhone` | string | Seller phone number (detail mode, when published) |
| `sellerUrl` | string | Seller profile or store URL |
| `sellerVerified` | boolean | Verified-seller flag |

### Tips for Best Results

- **Use common Croatian keywords** — Njuškalo is a Croatian-language site, so "stan Zagreb" or "Audi A4" returns far more than English terms. If a keyword finds nothing, the run tells you exactly which keyword and sort it tried so you can broaden it.
- **Paste filter URLs for precise targeting** — build the exact search you want on the site (price range, region, condition), then paste that URL; every filter in the address bar is kept, which is more precise than the keyword box alone.
- **Start small, then scale** — set `maxResults` to 20-50 on a first run to confirm the data fits your needs, then raise it or set 0 for unlimited.
- **Turn off details for fast scans** — leave `includeListingDetails` off when you only need titles, prices, and result-page data; turn it on for descriptions, every photo, seller phone, coordinates, and attributes.
- **Filter sellers by type for lead lists** — use the `sellerType` field to keep only private sellers or only registered stores, depending on whether you are sourcing inventory or pitching businesses.
- **Sort cheapest-first to surface deals** — pair `sortBy: "cheapest"` with a tight keyword to catch underpriced collectibles and electronics as soon as they post.
- **Combine keywords and URLs in one run** — keyword searches and pasted URLs are collected together, so you can monitor several models and a whole category at once.

### Pricing

**From $1.40 per 1,000 results** — one of the most affordable ways to collect Croatian classifieds data. 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.17 | $0.16 | $0.15 | $0.14 |
| 1,000 | $1.65 | $1.60 | $1.50 | $1.40 |
| 10,000 | $16.50 | $16.00 | $15.00 | $14.00 |
| 100,000 | $165.00 | $160.00 | $150.00 | $140.00 |

A "result" is any listing row in the output dataset. **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 is designed for legitimate market research, price monitoring, and lead generation. Users are responsible for complying with applicable laws and Njuškalo's Terms of Service. Do not use extracted data for spam, harassment, or any illegal purpose, and handle any personal data (such as seller contact details) in line with applicable privacy and data-protection regulations.

# Actor input Schema

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

Paste Njuškalo.hr URLs directly. Works with category pages (e.g. https://www.njuskalo.hr/prodaja-stanova), filtered or region pages, search-result pages, and direct listing pages. Any filters already in the URL (price, location, sort, keywords) are applied automatically. Mix as many URLs as you like.

## `searchKeywords` (type: `array`):

Type what you are looking for (e.g. 'Audi A4', 'iPhone 15', 'apartment Zagreb'). Each keyword runs a Njuškalo search across all categories. No need to build URLs by hand.

## `category` (type: `string`):

Limit keyword searches to one Njuškalo category. Only applies to Search Keywords above — ignored for URLs, which carry their own category. Leave on 'All Categories' to search everything.

## `sortBy` (type: `string`):

Order in which keyword-search listings are collected. Only applies to Search Keywords — URLs keep their own sort order.

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

Maximum number of listings to collect across all URLs and keywords combined, up to 100,000 per run. Set to 0 for unlimited — a single source then scans a very large but finite number of result pages (effectively unlimited for normal use). Tip: start with 20-50 to test, then increase.

## `includeListingDetails` (type: `boolean`):

Open each listing's detail page to capture the full description, all photos, seller name and phone, exact location, and category-specific attributes (mileage, rooms, size, etc.). Slower but much richer. When off, only the data visible on result pages is returned.

## Actor input object example

```json
{
  "startUrls": [
    "https://www.njuskalo.hr/prodaja-stanova"
  ],
  "searchKeywords": [],
  "category": "all",
  "sortBy": "relevance",
  "maxResults": 100,
  "includeListingDetails": true
}
```

# Actor output Schema

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

Table of scraped Njuškalo listings 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 = {
    "startUrls": [
        "https://www.njuskalo.hr/prodaja-stanova"
    ],
    "searchKeywords": [],
    "category": "all",
    "sortBy": "relevance",
    "maxResults": 100,
    "includeListingDetails": true
};

// Run the Actor and wait for it to finish
const run = await client.actor("solidcode/njuskalo-hr-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 = {
    "startUrls": ["https://www.njuskalo.hr/prodaja-stanova"],
    "searchKeywords": [],
    "category": "all",
    "sortBy": "relevance",
    "maxResults": 100,
    "includeListingDetails": True,
}

# Run the Actor and wait for it to finish
run = client.actor("solidcode/njuskalo-hr-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 '{
  "startUrls": [
    "https://www.njuskalo.hr/prodaja-stanova"
  ],
  "searchKeywords": [],
  "category": "all",
  "sortBy": "relevance",
  "maxResults": 100,
  "includeListingDetails": true
}' |
apify call solidcode/njuskalo-hr-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Njuškalo Scraper",
        "description": "[💰 $1.4 / 1K] Extract classified listings from Njuškalo.hr, Croatia's largest marketplace. Get titles, prices, photos, locations, seller names and phone numbers, and attributes for cars, real estate, electronics, fashion, jobs, and more. Search by keyword or paste any category or listing URL.",
        "version": "1.0",
        "x-build-id": "XIhx6bOZ35wi1zuK0"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/solidcode~njuskalo-hr-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-solidcode-njuskalo-hr-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~njuskalo-hr-scraper/runs": {
            "post": {
                "operationId": "runs-sync-solidcode-njuskalo-hr-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~njuskalo-hr-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-solidcode-njuskalo-hr-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": {
                    "startUrls": {
                        "title": "Njuškalo URLs",
                        "type": "array",
                        "description": "Paste Njuškalo.hr URLs directly. Works with category pages (e.g. https://www.njuskalo.hr/prodaja-stanova), filtered or region pages, search-result pages, and direct listing pages. Any filters already in the URL (price, location, sort, keywords) are applied automatically. Mix as many URLs as you like.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "searchKeywords": {
                        "title": "Search Keywords",
                        "type": "array",
                        "description": "Type what you are looking for (e.g. 'Audi A4', 'iPhone 15', 'apartment Zagreb'). Each keyword runs a Njuškalo search across all categories. No need to build URLs by hand.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "category": {
                        "title": "Category",
                        "enum": [
                            "all",
                            "nekretnine",
                            "automobili",
                            "vozila",
                            "mobiteli",
                            "racunala",
                            "elektronika",
                            "moda",
                            "dom-i-vrt",
                            "sport",
                            "djecja-oprema",
                            "poslovi",
                            "usluge",
                            "zivotinje"
                        ],
                        "type": "string",
                        "description": "Limit keyword searches to one Njuškalo category. Only applies to Search Keywords above — ignored for URLs, which carry their own category. Leave on 'All Categories' to search everything.",
                        "default": "all"
                    },
                    "sortBy": {
                        "title": "Sort Results By",
                        "enum": [
                            "relevance",
                            "newest",
                            "cheapest",
                            "expensive"
                        ],
                        "type": "string",
                        "description": "Order in which keyword-search listings are collected. Only applies to Search Keywords — URLs keep their own sort order.",
                        "default": "relevance"
                    },
                    "maxResults": {
                        "title": "Max Results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of listings to collect across all URLs and keywords combined, up to 100,000 per run. Set to 0 for unlimited — a single source then scans a very large but finite number of result pages (effectively unlimited for normal use). Tip: start with 20-50 to test, then increase.",
                        "default": 100
                    },
                    "includeListingDetails": {
                        "title": "Include Full Listing Details",
                        "type": "boolean",
                        "description": "Open each listing's detail page to capture the full description, all photos, seller name and phone, exact location, and category-specific attributes (mileage, rooms, size, etc.). Slower but much richer. When off, only the data visible on result pages is returned.",
                        "default": true
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
