# \[💰0.8/1k] WeWorkRemotely Jobs Scraper (`epicscrapers/weworkremotely-jobs-scraper`) Actor

Scrapes job listings from WeWorkRemotely.com. Supports categories, search, and job detail pages with rich JSON-LD data including salary, applicant countries, and company info.

- **URL**: https://apify.com/epicscrapers/weworkremotely-jobs-scraper.md
- **Developed by:** [Epic Scrapers](https://apify.com/epicscrapers) (community)
- **Categories:** Jobs, Lead generation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.70 / 1,000 jobs

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

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

## What's an Apify Actor?

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

## How to integrate an Actor?

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

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

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

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

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

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

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

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

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

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

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


# README

## WeWorkRemotely Jobs Scraper

Scrape remote job listings from [WeWorkRemotely.com](https://weworkremotely.com) — the largest remote work community with over 3 million visitors. Extract job titles, descriptions, salaries, company info, applicant country requirements, skills, and more. Export to JSON, CSV, or Excel.

### What This Scraper Does

- **Scrape job listings** from category pages, search results, employment-type pages, or individual job detail pages
- **Extract full job details** including descriptions, salary ranges (min/max), employment type, company info, and applicant country requirements
- **Filter by category** — Back-End, Front-End, Full-Stack, DevOps, Design, Product, Sales, Customer Support, and more
- **Search by keyword** — find specific roles like "python developer", "react", "devops engineer"
- **Filter by employment type** — Full-Time, Contract
- **Post-filter results** by country, region, time posted, job type, and minimum salary
- **Choose output mode** — detailed mode with full job descriptions and salary data, or fast listing-only mode

### Why Use This Scraper

WeWorkRemotely is one of the most popular remote job boards, but browsing manually is time-consuming. You can't search with complex filters, compare salaries across listings, or export results in bulk. This scraper automates the entire process so you can:

- Build a pipeline of remote job leads in minutes instead of hours
- Filter jobs by the countries that accept applicants from your location
- Find jobs within your salary range using the minimum salary filter
- Track new job postings over time with the posted-date filter
- Export structured data for analysis, job boards, or recruitment tools

### Quick Start

#### Option A: Start URLs (Recommended)

Paste one or more WeWorkRemotely URLs directly:

```json
{
  "startUrls": [
    "https://weworkremotely.com/categories/remote-back-end-programming-jobs",
    "https://weworkremotely.com/remote-full-time-jobs",
    "https://weworkremotely.com/remote-jobs/search?term=python"
  ],
  "includeDetailPages": true,
  "maxItems": 100
}
````

#### Option B: Built-in Filters

Don't have specific URLs? Use the category, keyword, and employment-type pickers instead:

```json
{
  "category": "remote-back-end-programming-jobs",
  "searchKeyword": "python",
  "employmentType": "full-time",
  "includeDetailPages": true,
  "maxItems": 100
}
```

#### Option C: Fast Listing-Only Mode

Get basic job info without detail pages — much faster for large-scale scraping:

```json
{
  "startUrls": [
    "https://weworkremotely.com/categories/remote-front-end-programming-jobs"
  ],
  "includeDetailPages": false,
  "maxItems": 500
}
```

### Available Categories

| Category Slug | Display Name |
|---|---|
| `remote-back-end-programming-jobs` | Back-End Programming |
| `remote-front-end-programming-jobs` | Front-End Programming |
| `remote-full-stack-programming-jobs` | Full-Stack Programming |
| `remote-devops-sysadmin-jobs` | DevOps and SysAdmin |
| `remote-design-jobs` | Design |
| `remote-product-jobs` | Product |
| `remote-management-and-finance-jobs` | Management and Finance |
| `remote-sales-and-marketing-jobs` | Sales and Marketing |
| `remote-customer-support-jobs` | Customer Support |
| `all-other-remote-jobs` | All Other Remote |

### URL Types You Can Use

| URL Pattern | Description |
|---|---|
| `https://weworkremotely.com/remote-jobs` | All job listings |
| `https://weworkremotely.com/categories/{slug}` | Jobs in a specific category |
| `https://weworkremotely.com/remote-jobs/search?term={keyword}` | Search results for a term |
| `https://weworkremotely.com/remote-full-time-jobs` | Full-time jobs only |
| `https://weworkremotely.com/remote-contract-jobs` | Contract jobs only |
| `https://weworkremotely.com/remote-jobs/{job-slug}` | A single job detail page |

### Post-Filters

Narrow down results after scraping with these optional filters:

| Filter | Description | Example |
|---|---|---|
| `countries` | Only keep jobs accepting applicants from these countries | `["US", "GB", "DE"]` |
| `timeFilter` | Only keep jobs posted within this window | `"7d"`, `"30d"`, `"24h"`, `"90d"` |
| `regions` | Only keep jobs from these regions | `["Anywhere in the World", "USA Only"]` |
| `jobTypes` | Only keep specific employment types | `["Full-Time", "Contract"]` |
| `minSalary` | Minimum salary in USD/year | `80000` |

### Example: Full Input

```json
{
  "startUrls": [
    "https://weworkremotely.com/categories/remote-back-end-programming-jobs",
    "https://weworkremotely.com/remote-full-time-jobs"
  ],
  "includeDetailPages": true,
  "includeDescription": true,
  "cleanHtml": false,
  "countries": ["US", "GB", "CA"],
  "timeFilter": "30d",
  "regions": [],
  "jobTypes": ["Full-Time"],
  "minSalary": 60000,
  "maxItems": 200
}
```

### Example Output

Each job result contains structured data ready for analysis:

```json
{
  "jobId": "community-sports-partners-web-developer",
  "title": "Web Developer",
  "url": "https://weworkremotely.com/remote-jobs/community-sports-partners-web-developer",
  "description": "<strong>Description</strong><br/><p>Community Sports Partners is one of the largest...</p>",
  "employmentType": ["Full-Time"],
  "occupationalCategory": ["Back-End Programming"],
  "postedDate": "2026-05-28 21:38:25 UTC",
  "validThrough": "2026-06-27 21:38:25 UTC",
  "companyName": "Community Sports Partners",
  "companyLogo": "https://we-work-remotely.imgix.net/logos/0171/5359/logo.gif",
  "companyUrl": "https://communitysportspartners.ca",
  "companyId": "community-sports-partners",
  "location": "Buenos Aires, Argentina",
  "applicantCountries": ["US", "GB", "DE"],
  "salary": {
    "currency": "USD",
    "min": 80000,
    "max": 120000,
    "unit": "YEAR"
  },
  "applyUrl": "https://communitysportspartners.ca/careers",
  "applyType": "external",
  "directApply": false,
  "tags": ["Full-Time", "Anywhere in the World"],
  "isFeatured": false,
  "isBoosted": false,
  "postedAge": "2d",
  "scrapedAt": "2026-05-30T14:00:00.000Z",
  "listingOnly": false
}
```

### Output Fields

| Field | Description |
|---|---|
| `jobId` | Unique job slug from the URL |
| `title` | Job title as listed on WeWorkRemotely |
| `url` | Direct link to the job listing |
| `description` | Full job description (HTML or plain text) |
| `employmentType` | Employment type(s) — Full-Time, Contract, etc. |
| `occupationalCategory` | Job categories — Back-End Programming, Design, etc. |
| `postedDate` | When the job was posted (UTC) |
| `validThrough` | When the job listing expires (UTC) |
| `companyName` | Name of the hiring company |
| `companyLogo` | URL of the company logo image |
| `companyUrl` | Company's website URL |
| `companyId` | Company's profile slug on WeWorkRemotely |
| `location` | Company headquarters location |
| `applicantCountries` | Countries where applicants can be based |
| `salary` | Salary information (currency, min, max, unit) |
| `applyUrl` | External URL to apply for the job |
| `applyType` | Whether the apply URL is external |
| `directApply` | Whether the job supports direct application |
| `tags` | Listing tags (employment type, region, salary band) |
| `isFeatured` | Whether the job is a featured/paid listing |
| `isBoosted` | Whether the job is boosted |
| `postedAge` | Human-readable time since posting (e.g. "2d", "1w") |
| `scrapedAt` | Timestamp when the job was scraped |
| `listingOnly` | Whether this result came from listing-only mode |

### Output Formats

Results are stored in the default dataset and available as:

- **JSON** — structured data for API consumption or further processing
- **CSV** — open in Excel, Google Sheets, or any spreadsheet tool
- **Excel** — formatted spreadsheets ready for reporting

### Tips & Use Cases

**Job hunting** — scrape your target category with `includeDetailPages: true` and `timeFilter: "7d"` to get the latest relevant listings with full descriptions and salary info.

**Recruitment & sourcing** — scrape multiple categories with `includeDetailPages: false` for speed, then use the `countries` filter to find candidates eligible in specific regions.

**Market research** — scrape all categories regularly to track remote job market trends: which technologies are in demand, average salary ranges by role, and which companies are hiring.

**Job board / aggregator** — use the output to populate your own job board or newsletter with fresh remote job listings.

**Competitive analysis** — monitor which companies are posting the most remote roles and what skills they're looking for.

***

Built on the [Apify platform](https://apify.com). To run this scraper, you'll need an Apify account and residential proxies (recommended for reliable access).

# Actor input Schema

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

One or more WeWorkRemotely URLs to scrape. Supports: /remote-jobs, /categories/{slug}, /remote-jobs/search?term=..., /remote-jobs/{slug}, /remote-full-time-jobs, /remote-contract-jobs.

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

Select a job category to scrape. Leave empty for all categories.

## `searchKeyword` (type: `string`):

Search jobs by keyword (e.g. 'python', 'react', 'rust'). Leave empty for no keyword filter.

## `employmentType` (type: `string`):

Filter by employment type. Only applies when category or searchKeyword is set.

## `includeDetailPages` (type: `boolean`):

ON (default) — fetches each job's detail page for full JSON-LD data (salary, applicant countries, description). OFF — extracts ~12 fields from listing cards only (faster, fewer fields).

## `countries` (type: `array`):

Only keep jobs accepting applicants from these countries (ISO-2 codes, e.g. US, GB, DE). Leave empty for all countries.

## `timeFilter` (type: `string`):

Only keep jobs posted within this time window. Relative time from now.

## `regions` (type: `array`):

Only keep jobs matching these region labels (e.g. 'Anywhere in the World', 'USA Only', 'EMEA'). Leave empty for all regions.

## `jobTypes` (type: `array`):

Only keep jobs matching these types (e.g. 'Full-Time', 'Contract', 'Freelance'). Leave empty for all types.

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

Only keep jobs with a minimum salary at or above this amount (USD/year, 0 = no filter). Only applies in detail mode.

## `includeDescription` (type: `boolean`):

ON (default) — include the full job description in results. OFF — omit description to reduce output size.

## `cleanHtml` (type: `boolean`):

OFF (default) — keep HTML tags in description. ON — strip all HTML tags, returning plain text only.

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

Maximum number of job results to return. The actor stops scraping once this limit is reached.

## `maxConcurrency` (type: `integer`):

Maximum number of concurrent HTTP requests.

## `minConcurrency` (type: `integer`):

Minimum number of concurrent HTTP requests.

## `maxRequestRetries` (type: `integer`):

Maximum number of retries for failed requests.

## `proxy` (type: `object`):

Select proxies to use. Residential proxies are recommended for reliable scraping.

## Actor input object example

```json
{
  "startUrls": [
    "https://weworkremotely.com/categories/remote-back-end-programming-jobs",
    "https://weworkremotely.com/remote-full-time-jobs",
    "https://weworkremotely.com/remote-jobs/search?term=python"
  ],
  "category": "",
  "searchKeyword": "",
  "employmentType": "",
  "includeDetailPages": true,
  "countries": [],
  "timeFilter": "",
  "regions": [],
  "jobTypes": [],
  "minSalary": 0,
  "includeDescription": true,
  "cleanHtml": false,
  "maxItems": 1000,
  "maxConcurrency": 10,
  "minConcurrency": 1,
  "maxRequestRetries": 5,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

## `results` (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 = {
    "startUrls": [
        "https://weworkremotely.com/categories/remote-back-end-programming-jobs",
        "https://weworkremotely.com/remote-full-time-jobs",
        "https://weworkremotely.com/remote-jobs/search?term=python"
    ],
    "proxy": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("epicscrapers/weworkremotely-jobs-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "startUrls": [
        "https://weworkremotely.com/categories/remote-back-end-programming-jobs",
        "https://weworkremotely.com/remote-full-time-jobs",
        "https://weworkremotely.com/remote-jobs/search?term=python",
    ],
    "proxy": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("epicscrapers/weworkremotely-jobs-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "startUrls": [
    "https://weworkremotely.com/categories/remote-back-end-programming-jobs",
    "https://weworkremotely.com/remote-full-time-jobs",
    "https://weworkremotely.com/remote-jobs/search?term=python"
  ],
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call epicscrapers/weworkremotely-jobs-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "[💰0.8/1k] WeWorkRemotely Jobs Scraper",
        "description": "Scrapes job listings from WeWorkRemotely.com. Supports categories, search, and job detail pages with rich JSON-LD data including salary, applicant countries, and company info.",
        "version": "0.0",
        "x-build-id": "Ge1QRr7mJtcGN5Ydw"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/epicscrapers~weworkremotely-jobs-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-epicscrapers-weworkremotely-jobs-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/epicscrapers~weworkremotely-jobs-scraper/runs": {
            "post": {
                "operationId": "runs-sync-epicscrapers-weworkremotely-jobs-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/epicscrapers~weworkremotely-jobs-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-epicscrapers-weworkremotely-jobs-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "One or more WeWorkRemotely URLs to scrape. Supports: /remote-jobs, /categories/{slug}, /remote-jobs/search?term=..., /remote-jobs/{slug}, /remote-full-time-jobs, /remote-contract-jobs.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "category": {
                        "title": "Category",
                        "enum": [
                            "",
                            "remote-full-stack-programming-jobs",
                            "remote-front-end-programming-jobs",
                            "remote-back-end-programming-jobs",
                            "remote-devops-sysadmin-jobs",
                            "remote-design-jobs",
                            "remote-product-jobs",
                            "remote-management-and-finance-jobs",
                            "remote-sales-and-marketing-jobs",
                            "remote-customer-support-jobs",
                            "all-other-remote-jobs"
                        ],
                        "type": "string",
                        "description": "Select a job category to scrape. Leave empty for all categories.",
                        "default": ""
                    },
                    "searchKeyword": {
                        "title": "Search Keyword",
                        "type": "string",
                        "description": "Search jobs by keyword (e.g. 'python', 'react', 'rust'). Leave empty for no keyword filter.",
                        "default": ""
                    },
                    "employmentType": {
                        "title": "Employment Type",
                        "enum": [
                            "",
                            "full-time",
                            "contract"
                        ],
                        "type": "string",
                        "description": "Filter by employment type. Only applies when category or searchKeyword is set.",
                        "default": ""
                    },
                    "includeDetailPages": {
                        "title": "Include detail pages",
                        "type": "boolean",
                        "description": "ON (default) — fetches each job's detail page for full JSON-LD data (salary, applicant countries, description). OFF — extracts ~12 fields from listing cards only (faster, fewer fields).",
                        "default": true
                    },
                    "countries": {
                        "title": "Applicant Countries",
                        "type": "array",
                        "description": "Only keep jobs accepting applicants from these countries (ISO-2 codes, e.g. US, GB, DE). Leave empty for all countries.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "timeFilter": {
                        "title": "Posted Within",
                        "enum": [
                            "",
                            "24h",
                            "7d",
                            "30d",
                            "90d"
                        ],
                        "type": "string",
                        "description": "Only keep jobs posted within this time window. Relative time from now.",
                        "default": ""
                    },
                    "regions": {
                        "title": "Regions",
                        "type": "array",
                        "description": "Only keep jobs matching these region labels (e.g. 'Anywhere in the World', 'USA Only', 'EMEA'). Leave empty for all regions.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "jobTypes": {
                        "title": "Job Types",
                        "type": "array",
                        "description": "Only keep jobs matching these types (e.g. 'Full-Time', 'Contract', 'Freelance'). Leave empty for all types.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "minSalary": {
                        "title": "Minimum Salary (USD/year)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only keep jobs with a minimum salary at or above this amount (USD/year, 0 = no filter). Only applies in detail mode.",
                        "default": 0
                    },
                    "includeDescription": {
                        "title": "Include description",
                        "type": "boolean",
                        "description": "ON (default) — include the full job description in results. OFF — omit description to reduce output size.",
                        "default": true
                    },
                    "cleanHtml": {
                        "title": "Clean HTML",
                        "type": "boolean",
                        "description": "OFF (default) — keep HTML tags in description. ON — strip all HTML tags, returning plain text only.",
                        "default": false
                    },
                    "maxItems": {
                        "title": "Max results",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of job results to return. The actor stops scraping once this limit is reached.",
                        "default": 1000
                    },
                    "maxConcurrency": {
                        "title": "Max concurrency",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of concurrent HTTP requests.",
                        "default": 10
                    },
                    "minConcurrency": {
                        "title": "Min concurrency",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Minimum number of concurrent HTTP requests.",
                        "default": 1
                    },
                    "maxRequestRetries": {
                        "title": "Max retries",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of retries for failed requests.",
                        "default": 5
                    },
                    "proxy": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Select proxies to use. Residential proxies are recommended for reliable scraping.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
