# Made-in-China Products & Suppliers Scraper (`fetch_cat/made-in-china-products-suppliers-scraper`) Actor

Scrape public Made-in-China product listings, prices, MOQ, supplier names, locations, badges, images, and sourcing diagnostics.

- **URL**: https://apify.com/fetch\_cat/made-in-china-products-suppliers-scraper.md
- **Developed by:** [Hanna Nosova](https://apify.com/fetch_cat) (community)
- **Categories:** E-commerce, Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 75.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.03 / 1,000 item extracteds

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

## Made-in-China Products & Suppliers Scraper

Scrape public Made-in-China product search pages into structured product and supplier sourcing data. Export product names, URLs, prices, MOQ, images, supplier names, locations, badges, and diagnostics to CSV, Excel, JSON, or the Apify API.

### At a glance

- **Primary job**: Build supplier shortlists and product price/MOQ benchmarks from public Made-in-China search and category pages.
- **Input**: Enter a keyword such as `electronics` or paste public Made-in-China search/category/product URLs.
- **Output**: One dataset row per product, with raw listing values and optional structured detail data such as specifications, description, SKU/model, all images, availability, video, and supplier address.
- **Best for**: B2B sourcing research, procurement monitoring, supplier discovery, product benchmarking, and lead enrichment workflows.

### Common workflows

- **Supplier discovery**: Search a product keyword and export supplier names, showroom URLs, locations, and audited/diamond badges.
- **Price and MOQ benchmarking**: Collect listing prices, price ranges, MOQ text, parsed MOQ values, and product URLs for sourcing analysis.
- **Category monitoring**: Schedule the same search URL weekly and compare newly listed products or suppliers.
- **Automation**: Send dataset exports to spreadsheets, CRMs, procurement tools, webhooks, or AI agents through the Apify API and MCP Server.

### Ready-to-run examples

- [Find LED suppliers on Made-in-China](https://apify.com/fetch_cat/made-in-china-products-suppliers-scraper/examples/made-in-china-led-suppliers) — collect a bounded supplier and product shortlist for LED lighting.
- [Find packaging suppliers by MOQ](https://apify.com/fetch_cat/made-in-china-products-suppliers-scraper/examples/made-in-china-packaging-suppliers-moq) — find paper packaging products with a minimum parsed MOQ of 100.
- [Research solar panel product details](https://apify.com/fetch_cat/made-in-china-products-suppliers-scraper/examples/made-in-china-solar-panel-details) — enrich solar panel listings with specifications, descriptions, images, availability, and supplier details.

### Input recipes

- **Small smoke test**: Use `query: "electronics"`, `maxItems: 10`, and `maxPages: 1`.
- **Product sourcing search**: Set `query` to a specific item such as `pcb assembly`, `solar panel`, or `packaging machine` and raise `maxItems` after checking output quality.
- **Known search URL**: Paste a Made-in-China URL such as `https://www.made-in-china.com/multi-search/electronics/F1/1.html` in `startUrls`.
- **Batch keyword research**: Put up to 20 terms in `queries`, for example `solar panel`, `battery storage`, and `inverter`. The legacy single `query` input remains supported.
- **MOQ shortlist**: Add `minMoq` to keep products whose parsed MOQ is at least the value you specify; unparseable MOQ rows are kept with raw text.
- **Structured product details**: Set `includeDetails: true` to fetch each public product page. A blocked or malformed detail page does not discard the valid listing row; check `warnings` and `extractionStatus`.

### What data can you extract?

| Field | Description |
| --- | --- |
| `productId`, `productName`, `productUrl` | Product identifier, title, and public listing URL. |
| `sourceUrl`, `searchQuery`, `pageNumber` | Where the row came from and pagination context. |
| `imageUrl`, `imageUrls` | Primary and additional public image URLs. |
| `priceRaw`, `priceMin`, `priceMax`, `currency` | Raw price text plus parsed numeric range when available. |
| `moqRaw`, `moqValue`, `moqUnit` | Raw MOQ text plus parsed quantity/unit when available. |
| `supplierName`, `supplierUrl`, `supplierLocation` | Public supplier identity and location shown on the listing. |
| `businessType`, `isAuditedSupplier`, `isDiamondMember`, `memberDurationYears` | Supplier badges and business hints visible in public HTML. |
| `certifications`, `supportsOem`, `supportsSample`, `hasVideo` | Listing-level signals when visible. |
| `description`, `sku`, `modelNumber`, `brand`, `availability`, `priceValidUntil` | Additive public product-detail fields when `includeDetails` is enabled or a direct product URL is supplied. |
| `properties`, `videoUrl` | Public specification name/value pairs and product video URL from structured detail data. |
| `scrapedAt`, `extractionStatus`, `missingFields` | Run diagnostics and nullable-field visibility notes. |
| `warnings` | Non-fatal row warnings, including preserved listings whose optional detail enrichment failed. |

The default key-value store also contains `RUN_SUMMARY` and `RUN_CHECKPOINT` records with saved/charged counts, source outcomes, route information, deadline state, and pending continuation position.

### Input configuration

| Setting | JSON key | Use it for | Example |
| --- | --- | --- | --- |
| Search keyword | `query` | Build a Made-in-China keyword search when no URL is supplied. | `electronics` |
| Search keywords | `queries` | Process up to 20 keywords in one bounded run. | `["solar panel", "inverter"]` |
| Start URLs | `startUrls` | Public Made-in-China search, category, supplier, or product URLs. | `https://www.made-in-china.com/multi-search/electronics/F1/1.html` |
| Maximum products | `maxItems` | Cap saved rows and control spend. | `50` |
| Maximum pages | `maxPages` | Bound pagination on broad searches. | `5` |
| Minimum MOQ filter | `minMoq` | Optional parsed-MOQ post-filter. | `100` |
| Include details | `includeDetails` | Enrich rows from public product JSON-LD while preserving listing rows when a detail request fails. | `false` |
| Maximum working time | `maxRuntimeSecs` | Stop new requests by this shared deadline and reserve at least 30 seconds for checkpoints and cleanup. | `270` |
| Proxy configuration | `proxyConfiguration` | Configure Apify proxy if the source throttles requests. | `{ "useApifyProxy": true }` |

### Example input

```json
{
  "queries": ["solar panel", "inverter"],
  "maxItems": 20,
  "maxPages": 1,
  "includeDetails": true,
  "maxRuntimeSecs": 180,
  "proxyConfiguration": { "useApifyProxy": true }
}
````

### Example output

```json
{
  "productName": "Acc Block 2.0MPa 3-50m³ Industrial Autoclave",
  "productUrl": "https://boilertaiguo.en.made-in-china.com/product/AnerHVFTXdYN/China-Acc-Block-2-0MPa-3-50m-Industrial-Autoclave.html",
  "priceRaw": "USD 7200.00",
  "priceMin": 7200,
  "priceMax": 7200,
  "currency": "USD",
  "moqRaw": null,
  "moqValue": null,
  "moqUnit": null,
  "supplierName": "Henan Taiguo Boiler Group Co., Ltd",
  "supplierLocation": "Henan, China",
  "isAuditedSupplier": null,
  "sku": "2096948152",
  "modelNumber": "FGZCS",
  "availability": "InStock",
  "properties": {
    "Function": "Autoclave",
    "Rated Pressure": "1.4MPa"
  },
  "extractionStatus": "detail",
  "warnings": [],
  "scrapedAt": "2026-07-20T19:00:00.000Z",
  "missingFields": ["moqRaw"]
}
```

### Pricing

| Event | Free | Bronze | Silver | Gold | Platinum | Diamond | Charged when |
| --- | ---: | ---: | ---: | ---: | ---: | ---: | --- |
| Run start | `$0.005` | `$0.005` | `$0.005` | `$0.005` | `$0.005` | `$0.005` | Once when the Actor starts. |
| Product saved | `$0.000058734` | `$0.000051073` | `$0.000039837` | `$0.000030644` | `$0.000020429` | `$0.000014300` | Each product row saved to the dataset. |

The `item` event is charged only for product rows the Actor attempts to save. Optional detail failures do not create a separate charge or paid error row; the valid product listing is saved once with a warning.

### Tips for best results

- **Start small**: Use `maxItems: 10` and `maxPages: 1` until output quality is verified for your keyword.
- **Use public inputs**: Choose Made-in-China pages visible without logging in.
- **Keep searches focused**: Specific sourcing terms usually produce cleaner supplier shortlists than very broad terms.
- **Keep raw fields**: Use raw price/MOQ fields for auditability; parsed numeric fields are filled only when the text is safe to parse.
- **Use details selectively**: Detail mode performs one additional bounded request per product. Keep `maxItems` small until you confirm the richer fields are useful for your sourcing workflow.

### API usage

Node.js:

```js
import { ApifyClient } from "apify-client";

const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor("fetch_cat/made-in-china-products-suppliers-scraper").call({
  query: "electronics",
  maxItems: 10,
  maxPages: 1
});
console.log(run.defaultDatasetId);
```

Python:

```python
from apify_client import ApifyClient

client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("fetch_cat/made-in-china-products-suppliers-scraper").call(run_input={
    "query": "electronics",
    "maxItems": 10,
    "maxPages": 1,
})
print(run["defaultDatasetId"])
```

cURL:

```bash
curl -X POST "https://api.apify.com/v2/acts/fetch_cat~made-in-china-products-suppliers-scraper/runs?token=YOUR_APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"query":"electronics","maxItems":10,"maxPages":1}'
```

### MCP and AI agents

Use this Actor from MCP-compatible tools through the official Apify MCP Server.

```bash
claude mcp add --transport http apify "https://mcp.apify.com?tools=fetch_cat/made-in-china-products-suppliers-scraper"
```

```json
{
  "mcpServers": {
    "apify": {
      "url": "https://mcp.apify.com?tools=fetch_cat/made-in-china-products-suppliers-scraper"
    }
  }
}
```

Example prompt: "Run Made-in-China Products & Suppliers Scraper for electronics with 10 products and summarize supplier locations and MOQ ranges."

### Schedule supplier and price monitoring

Use [Apify Schedules](https://docs.apify.com/platform/schedules) to repeat a focused `query` or `startUrls` input daily or weekly. Keep the same keyword, limits, and detail mode so downstream comparisons stay consistent. Send completed-run webhooks to a spreadsheet, database, CRM, or alerting workflow; use `productId` or normalized `productUrl` as the stable comparison key.

### Limits and caveats

- **Coverage**: This Actor targets public pages and does not guarantee every field appears on every listing.
- **Private surfaces excluded**: It does not log in, send inquiries, open chats, place orders, or scrape buyer-center content.
- **Source changes**: Made-in-China can change markup, ranking, prices, and supplier badges after a run finishes.
- **Rate limits**: Use conservative limits for broad category monitoring.
- **Fallback behavior**: Keyword pages can use an equivalent server-rendered mobile route after a transient desktop block. `RUN_SUMMARY` records the route that produced each source.
- **Details under blocking**: Product detail pages may occasionally present a challenge. The Actor preserves listing data and reports a row warning instead of discarding otherwise valid output.

### Legality and responsible use

Process only data you are allowed to access. Follow Made-in-China terms, Apify's terms, and applicable laws. Do not use this Actor to spam suppliers or automate private messaging.

### Related actors

- [Alibaba Products Scraper](https://apify.com/fetch_cat/alibaba-products-scraper)
- [1688 Wholesale Products Scraper](https://apify.com/fetch_cat/1688-wholesale-products-scraper)
- [AliExpress Products Scraper](https://apify.com/fetch_cat/aliexpress-products-scraper)

### FAQ

#### Can I export results?

Yes. Apify datasets support JSON, CSV, Excel, XML, RSS, and API access.

#### Why are some fields empty?

Some listings do not expose every field publicly. The Actor leaves unavailable fields empty and records field names in `missingFields` instead of guessing.

#### Can it contact suppliers?

No. This Actor only extracts public listing data. Inquiry forms, chat, buyer center, and account pages are intentionally out of scope.

#### Does it require login, cookies, or a Made-in-China API key?

No. It works with public pages and does not collect login cookies or private account data. You can configure Apify Proxy if the public site rate-limits your route.

#### Is this a Made-in-China API alternative?

It is a practical export and automation interface for the public product and supplier fields described above. It is not an official Made-in-China API and does not provide private buyer, order, message, or supplier-contact data.

#### What if a run returns no data?

Open `RUN_SUMMARY` to see whether the source was empty, blocked, or structurally changed. Retry with a small known keyword such as `electronics`, confirm the URL is public without login, and share the run ID through the Actor issue form if the known keyword also fails.

#### Can I schedule recurring exports?

Yes. Use Apify Schedules with stable input and compare rows by `productId` or `productUrl`. The Actor itself does not keep a cross-run price history.

### Support

Open an issue from the Actor page if a run fails or output looks wrong. Include the run ID or run URL, input JSON, expected output, actual output, and one reproducible public URL.

# Actor input Schema

## `query` (type: `string`):

Product keyword to search on Made-in-China when no start URLs are supplied.

## `queries` (type: `array`):

Optional batch of up to 20 product keywords. The legacy query field remains supported. Start URLs take precedence when supplied.

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

Made-in-China search, category, supplier showroom, or public product URLs to process.

## `maxItems` (type: `integer`):

Maximum number of product rows to save.

## `maxPages` (type: `integer`):

Safety limit for paginated search/category pages.

## `minMoq` (type: `integer`):

Optional post-filter. Keeps products whose parsed MOQ is at least this value. Products with unparseable MOQ are kept.

## `includeDetails` (type: `boolean`):

Fetch each public product page and read its schema.org JSON-LD for description, specifications, all images, SKU, model, availability, video, and supplier address. Failed enrichment keeps the valid listing row with a warning.

## `maxRuntimeSecs` (type: `integer`):

Stop admitting new requests after this many seconds, save a continuation checkpoint, and reserve at least 30 seconds for persistence before the 300-second platform timeout.

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

Apify proxy settings. Datacenter proxy is usually enough; switch only if Made-in-China blocks your run.

## Actor input object example

```json
{
  "query": "electronics",
  "startUrls": [
    {
      "url": "https://www.made-in-china.com/multi-search/electronics/F1/1.html"
    }
  ],
  "maxItems": 20,
  "maxPages": 5,
  "includeDetails": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `runSummary` (type: `string`):

No description

## `runCheckpoint` (type: `string`):

No description

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

No description

## `details` (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 = {
    "query": "electronics",
    "startUrls": [
        {
            "url": "https://www.made-in-china.com/multi-search/electronics/F1/1.html"
        }
    ],
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("fetch_cat/made-in-china-products-suppliers-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 = {
    "query": "electronics",
    "startUrls": [{ "url": "https://www.made-in-china.com/multi-search/electronics/F1/1.html" }],
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("fetch_cat/made-in-china-products-suppliers-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 '{
  "query": "electronics",
  "startUrls": [
    {
      "url": "https://www.made-in-china.com/multi-search/electronics/F1/1.html"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call fetch_cat/made-in-china-products-suppliers-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=fetch_cat/made-in-china-products-suppliers-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Made-in-China Products & Suppliers Scraper",
        "description": "Scrape public Made-in-China product listings, prices, MOQ, supplier names, locations, badges, images, and sourcing diagnostics.",
        "version": "0.1",
        "x-build-id": "gGLHzZODcIguovyNS"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/fetch_cat~made-in-china-products-suppliers-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-fetch_cat-made-in-china-products-suppliers-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/fetch_cat~made-in-china-products-suppliers-scraper/runs": {
            "post": {
                "operationId": "runs-sync-fetch_cat-made-in-china-products-suppliers-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/fetch_cat~made-in-china-products-suppliers-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-fetch_cat-made-in-china-products-suppliers-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": {
                    "query": {
                        "title": "Search keyword",
                        "type": "string",
                        "description": "Product keyword to search on Made-in-China when no start URLs are supplied."
                    },
                    "queries": {
                        "title": "Search keywords",
                        "maxItems": 20,
                        "type": "array",
                        "description": "Optional batch of up to 20 product keywords. The legacy query field remains supported. Start URLs take precedence when supplied.",
                        "items": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 200
                        }
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Made-in-China search, category, supplier showroom, or public product URLs to process.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "maxItems": {
                        "title": "Maximum products",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of product rows to save.",
                        "default": 20
                    },
                    "maxPages": {
                        "title": "Maximum pages",
                        "minimum": 1,
                        "maximum": 50,
                        "type": "integer",
                        "description": "Safety limit for paginated search/category pages.",
                        "default": 5
                    },
                    "minMoq": {
                        "title": "Minimum MOQ filter",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Optional post-filter. Keeps products whose parsed MOQ is at least this value. Products with unparseable MOQ are kept."
                    },
                    "includeDetails": {
                        "title": "Enrich product details",
                        "type": "boolean",
                        "description": "Fetch each public product page and read its schema.org JSON-LD for description, specifications, all images, SKU, model, availability, video, and supplier address. Failed enrichment keeps the valid listing row with a warning.",
                        "default": false
                    },
                    "maxRuntimeSecs": {
                        "title": "Maximum working time",
                        "minimum": 35,
                        "maximum": 270,
                        "type": "integer",
                        "description": "Stop admitting new requests after this many seconds, save a continuation checkpoint, and reserve at least 30 seconds for persistence before the 300-second platform timeout."
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify proxy settings. Datacenter proxy is usually enough; switch only if Made-in-China blocks your run."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
