{
  "openapi": "3.0.1",
  "info": {
    "title": "RemoteOK Jobs Scraper",
    "description": "Scrape RemoteOK jobs from the official public JSON API: title, company, tags, location, salary, description, posting date, job URL, and apply link. Filter by tags, keywords, company, location, and salary with no login, browser, or proxy. Pay per emitted job with direct source links.",
    "version": "0.1",
    "x-build-id": "AyTTF0B1wQCB5UBUe"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/schnellscrapers~remoteok-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-schnellscrapers-remoteok-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/schnellscrapers~remoteok-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-schnellscrapers-remoteok-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/schnellscrapers~remoteok-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-schnellscrapers-remoteok-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": {
          "tags": {
            "title": "Skill tags",
            "type": "array",
            "description": "Filter jobs by any RemoteOK tag, such as `python`, `react`, `devops`, `design`, `marketing`, or `customer support`. Each tag requests the current feed and results are deduplicated.",
            "items": {
              "type": "string"
            }
          },
          "keywordFilter": {
            "title": "Keyword filter",
            "type": "string",
            "description": "Keep jobs whose title, company, tags, or description contains this case-insensitive phrase (e.g. `senior`, `typescript`, or `startup`). Leave blank to keep all matching jobs."
          },
          "companyName": {
            "title": "Company filter",
            "type": "string",
            "description": "Keep jobs whose company name contains this case-insensitive text (e.g. `GitLab` or `Acme`). Leave blank to include every company."
          },
          "locationFilter": {
            "title": "Location filter",
            "type": "string",
            "description": "Keep jobs whose location contains this case-insensitive text (e.g. `Worldwide`, `Europe`, or `US`). Leave blank to include every location."
          },
          "excludeTags": {
            "title": "Exclude tags",
            "type": "array",
            "description": "Drop jobs carrying any of these tags (e.g. `non tech` or `crypto`). This exclusion runs before dataset writes and billing.",
            "items": {
              "type": "string"
            }
          },
          "minSalary": {
            "title": "Minimum salary",
            "minimum": 0,
            "maximum": 10000000,
            "type": "integer",
            "description": "Keep only jobs whose declared salary maximum is at least this annual USD amount. Jobs without salary data are excluded when this filter is greater than zero.",
            "default": 0
          },
          "includeDescription": {
            "title": "Include description",
            "type": "boolean",
            "description": "Keep the cleaned plain-text job description in each record. Turn off to reduce dataset size when you only need job metadata and links.",
            "default": true
          },
          "includeUnverified": {
            "title": "Include unverified jobs",
            "type": "boolean",
            "description": "When false, keep only records explicitly marked verified by the source. RemoteOK often omits this flag, so leave true unless your feed has verification data.",
            "default": true
          },
          "filterNonTech": {
            "title": "Exclude non-tech roles",
            "type": "boolean",
            "description": "Drop obvious non-technical roles such as receptionist, driver, nurse, accountant, and warehouse positions. Leave off for a complete remote job feed.",
            "default": false
          },
          "maxItems": {
            "title": "Maximum jobs",
            "minimum": 0,
            "maximum": 10000,
            "type": "integer",
            "description": "Hard cap on total jobs emitted across the full feed or all tag requests. Use a small value such as `20` for a cost-bounded smoke run; set `0` for the full matching feed.",
            "default": 100
          },
          "maxItemsPerTag": {
            "title": "Maximum jobs per tag",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Limit records considered from each tag request before deduplication. RemoteOK returns a flat recent feed rather than numbered pages; use this with `maxItems` to bound multi-tag runs.",
            "default": 100
          },
          "dryRun": {
            "title": "Dry run",
            "type": "boolean",
            "description": "Fetch, filter, and validate jobs without writing dataset records. Use for local or deployed previews when you want to inspect logs without billing result events.",
            "default": false
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}