{
  "openapi": "3.0.1",
  "info": {
    "title": "WeWorkRemotely Jobs Scraper [Only $0.99💰]",
    "description": "Scrape WeWorkRemotely for remote-job leads at $0.99/1K — recruit cross-border, benchmark salaries, mirror the board into your warehouse. Title, company, salary, employment type, eligible-countries list (200+ per job), external apply URL. Auto-routes any WWR URL. JSON or CSV.",
    "version": "1.0",
    "x-build-id": "GlVXndokZ0KoUXFh6"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/memo23~weworkremotely-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-memo23-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/memo23~weworkremotely-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-memo23-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/memo23~weworkremotely-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-memo23-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": "Full weworkremotely.com URLs to crawl. Mix listing and job-detail URLs in the same array.",
            "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": "WWR official category. Routes to `/categories/{slug}`. Ignored if Start URLs is non-empty.",
            "default": ""
          },
          "searchKeyword": {
            "title": "Search keyword",
            "type": "string",
            "description": "Keyword to search across WWR jobs (e.g. `python`, `react`, `golang`). Routes to `/remote-jobs/search?term=…`. **Takes priority over category** — WWR doesn't combine the two. Leave empty to use category instead.",
            "default": ""
          },
          "employmentType": {
            "title": "Employment type",
            "enum": [
              "",
              "full-time",
              "contract"
            ],
            "type": "string",
            "description": "Filter by employment type. Routes to `/remote-full-time-jobs` or `/remote-contract-jobs`. **Only applied when both keyword and category are empty.**",
            "default": ""
          },
          "includeDetailPages": {
            "title": "Include detail pages",
            "type": "boolean",
            "description": "**ON (default)** — fetch every job's detail page. Returns the full 23+ field schema including `applicantCountries`, parsed `salary`, real external `applyUrl`, `validThrough`, full `description`.\n\n**OFF** — emit rows directly from listing cards, no detail fetch. ~30× faster. Returns ~12 fields per job: `title`, `companyName`, `companyLogo`, `companyId`, `location`, `tags`, `isFeatured`, `isBoosted`, `postedAge`, `url`. Detail-only fields (`applicantCountries`, `salary`, `description`, `applyUrl`) are absent.",
            "default": true
          },
          "countries": {
            "title": "Country filter",
            "type": "array",
            "description": "Post-filter on `applicantCountries[]`. Keeps only jobs that allow workers from at least ONE of the country codes you list. Use ISO-2 codes (`US`, `GB`, `DE`, etc.). Case-insensitive. Leave empty for no filter.\n\n**Has no effect in listing-only mode** (which doesn't fetch `applicantCountries`).",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "timeFilter": {
            "title": "Time filter (posted within)",
            "enum": [
              "",
              "24h",
              "7d",
              "30d",
              "90d"
            ],
            "type": "string",
            "description": "Post-filter on `postedDate`. Returns only jobs posted within the selected window.",
            "default": ""
          },
          "regions": {
            "title": "Regions filter",
            "type": "array",
            "description": "Post-filter on the listing-card region label (e.g. `Anywhere in the World`, `USA Only`, `Europe Only`). Case-insensitive substring match. Matches if the row's `tags[]` contains ANY of these labels. Leave empty for no filter.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "jobTypes": {
            "title": "Job types filter",
            "type": "array",
            "description": "Post-filter on `employmentType[]`. Multi-select — keeps jobs whose employmentType is in this list. Common values: `Full-Time`, `Part-Time`, `Contract`, `Freelance`, `Internship`. Distinct from the Option B `employmentType` field which drives URL routing. Empty = no filter.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "minSalary": {
            "title": "Minimum salary (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Post-filter — keep rows where `salary.min >= minSalary`. **Permissive**: jobs without a listed salary are NOT dropped (many WWR employers don't post salary). Specify in USD. Leave empty or 0 for no filter.",
            "default": 0
          },
          "includeDescription": {
            "title": "Include description fields",
            "type": "boolean",
            "description": "When **off**, the actor drops `description`, `descriptionHtml`, and `descriptionText` from every row. Useful when you only need the metadata + apply URL and want a smaller dataset.",
            "default": true
          },
          "cleanHtml": {
            "title": "Clean HTML (plain-text only)",
            "type": "boolean",
            "description": "When **on**, only the plain-text `description` is emitted (taken from our normalised `descriptionText`); the HTML variants (`description` with markup, `descriptionHtml`) are stripped. Ignored when `includeDescription` is off.",
            "default": false
          },
          "maxItems": {
            "title": "Maximum items to scrape",
            "minimum": 1,
            "type": "integer",
            "description": "Hard cap on the number of jobs collected. WeWorkRemotely listing pages often hold 30+ jobs; categories paginate further. Use this cap to control billing.",
            "default": 1000
          },
          "maxConcurrency": {
            "title": "Max concurrency",
            "minimum": 1,
            "type": "integer",
            "description": "Maximum number of job-detail pages processed in parallel.",
            "default": 10
          },
          "minConcurrency": {
            "title": "Min concurrency",
            "minimum": 1,
            "type": "integer",
            "description": "Minimum number of job-detail pages processed in parallel.",
            "default": 1
          },
          "maxRequestRetries": {
            "title": "Max request retries",
            "minimum": 0,
            "type": "integer",
            "description": "Number of retries before a failed request is given up.",
            "default": 5
          },
          "proxy": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Apify proxy settings. WeWorkRemotely blocks datacenter IPs; keep `RESIDENTIAL` (the default) for stable runs.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}