{
  "openapi": "3.0.1",
  "info": {
    "title": "Remote Jobs Scraper · Remote Openings, Salary, Tags & Company",
    "description": "Scrape open remote jobs from Remotive API with company name, job title, salary, category, tags, locations, and direct apply link. Emits companyName per row.",
    "version": "1.0",
    "x-build-id": "c31IO4LGOFIthXvH8"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/reapx~remote-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-reapx-remote-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/reapx~remote-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-reapx-remote-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/reapx~remote-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-reapx-remote-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": {
          "category": {
            "title": "Job Category",
            "enum": [
              "",
              "software-dev",
              "customer-service",
              "design",
              "marketing",
              "sales",
              "product",
              "project-management",
              "artificial-intelligence",
              "data",
              "devops",
              "finance",
              "human-resources",
              "qa",
              "writing",
              "legal",
              "medical",
              "education",
              "account-management",
              "business-development",
              "communications",
              "compliance",
              "engineering",
              "information-technology",
              "knowledge-management",
              "operations",
              "research",
              "strategy",
              "supply-chain",
              "travel-hospitality",
              "all-others"
            ],
            "type": "string",
            "description": "Filter job listings by official Remotive job category slug (e.g. <code>software-dev</code>, <code>design</code>, <code>marketing</code>, <code>data</code>, <code>devops</code>, <code>product</code>). <b>Consequence:</b> Selecting a specific category narrows returned job postings to that domain; leaving this field empty fetches remote job openings across all available categories without restriction. <br><br>Learn more at <a href=\"https://remotive.com\">remotive.com</a>."
          },
          "search": {
            "title": "Search Keyword",
            "type": "string",
            "description": "Full-text search keyword matched against job title, company name, skill tags, or job description (e.g. <code>python</code>, <code>react</code>, <code>senior</code>, <code>engineer</code>). <b>Consequence:</b> Keyword filtering returns only matching remote positions; leaving this field empty returns all open remote positions across the board. <br><br>See <a href=\"https://remotive.com\">Remotive</a> for search syntax.<br><br>Leave this field empty to skip this filter."
          },
          "companyNameFilter": {
            "title": "Company Name Substring Filter",
            "type": "string",
            "description": "Filter remote job openings by company or employer name (e.g. <code>Lemon.io</code>, <code>Workada</code>, <code>Outsite</code>). <b>Consequence:</b> Narrows output to specific hiring companies; leaving this field empty includes job postings from all hiring employers. <br><br>Check employer names on <a href=\"https://remotive.com\">Remotive</a>.<br><br>Leave this field empty to skip this filter."
          },
          "tagFilter": {
            "title": "Skill Tag Filter",
            "type": "string",
            "description": "Filter jobs by technology stack or skill tag (e.g. <code>python</code>, <code>golang</code>, <code>javascript</code>, <code>node.js</code>, <code>ai/ml</code>). <b>Consequence:</b> Limits output to jobs tagged with this technology; leaving this field empty includes jobs regardless of tags. <br><br>See available tags on <a href=\"https://remotive.com\">Remotive</a>.<br><br>Leave this field empty to skip this filter."
          },
          "mustHaveSalary": {
            "title": "Must Have Disclosed Salary",
            "type": "boolean",
            "description": "Only return remote job postings that specify a clear salary range or hourly compensation rate. <b>Consequence:</b> Filters out jobs without disclosed pay; leaving this disabled (false) returns all jobs whether salary is published or not. <br><br>Salary transparency details on <a href=\"https://remotive.com\">Remotive</a>."
          },
          "maxItems": {
            "title": "Max Jobs Total",
            "minimum": 1,
            "maximum": 50000,
            "type": "integer",
            "description": "Maximum total number of remote job postings returned in the dataset output (e.g. <code>100</code>, <code>200</code>, <code>500</code>). <b>Consequence:</b> Higher limits take slightly longer to process and return more records, while lower limits run faster and cost less. Leaving empty uses default 200 limit. <br><br>Adjust capacity based on your pipeline needs.<br><br>The higher the number, the longer the run takes and the more you are charged, because you pay per row returned.",
            "default": 200
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}