{
  "openapi": "3.0.1",
  "info": {
    "title": "RocketJobs.pl Job Scraper",
    "description": "Scrape non-IT job offers from RocketJobs.pl - Poland's general job board covering sales, production, logistics, healthcare, retail, gastronomy, construction and 17 more categories. Extract salaries, locations, contract types, experience levels, skills and full descriptions.",
    "version": "1.0",
    "x-build-id": "b1g21UatzLfAeBxKf"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/trev0n~rocketjobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-trev0n-rocketjobs-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/trev0n~rocketjobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-trev0n-rocketjobs-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/trev0n~rocketjobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-trev0n-rocketjobs-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": "Paste RocketJobs.pl links — a search/category page or a single offer. Filters set below are ignored when this is used.",
            "default": [],
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "keyword": {
            "title": "Keyword",
            "type": "string",
            "description": "Free-text search, e.g. \"laborant\", \"kierowca\", \"kucharz\"."
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "City name or slug, e.g. \"krakow\", \"Gdańsk\". Use \"trojmiasto\" or \"slask\" for whole agglomerations, or leave empty for the whole country. Offers open in several cities are matched too."
          },
          "category": {
            "title": "Category",
            "enum": [
              "sales",
              "marketing",
              "finanse",
              "bankowosc",
              "consulting",
              "bi-data",
              "hr",
              "pm",
              "support",
              "praca-biurowa",
              "prawo",
              "media",
              "design",
              "inzynieria",
              "produkcja",
              "budownictwo",
              "logistyka",
              "zdrowie",
              "edukacja",
              "gastronomia",
              "turystyka",
              "praca-w-sklepie",
              "nieruchomosci",
              "inne"
            ],
            "type": "string",
            "description": "Limit results to one of the board's 24 categories."
          },
          "experienceLevel": {
            "title": "Experience level",
            "type": "array",
            "description": "Keep only offers at these levels.",
            "items": {
              "type": "string",
              "enum": [
                "intern",
                "junior",
                "mid",
                "senior",
                "manager",
                "c_level"
              ],
              "enumTitles": [
                "Intern",
                "Junior",
                "Mid / Specialist",
                "Senior",
                "Manager",
                "C-level"
              ]
            },
            "default": []
          },
          "employmentType": {
            "title": "Contract type",
            "type": "array",
            "description": "Keep only offers with these contract types.",
            "items": {
              "type": "string",
              "enum": [
                "permanent",
                "b2b",
                "mandate_contract",
                "contract",
                "internship"
              ],
              "enumTitles": [
                "Employment contract (umowa o pracę)",
                "B2B",
                "Mandate contract (umowa zlecenia)",
                "Specific-task contract (umowa o dzieło)",
                "Internship contract"
              ]
            },
            "default": []
          },
          "workingTime": {
            "title": "Working time",
            "type": "array",
            "description": "Full-time, part-time, internship, freelance or B2B contract.",
            "items": {
              "type": "string",
              "enum": [
                "full_time",
                "part_time",
                "internship",
                "freelance",
                "b2b_contract"
              ],
              "enumTitles": [
                "Full time",
                "Part time",
                "Internship",
                "Freelance",
                "B2B contract"
              ]
            },
            "default": []
          },
          "workplaceType": {
            "title": "Work mode",
            "type": "array",
            "description": "Remote, hybrid, on-site or mobile work.",
            "items": {
              "type": "string",
              "enum": [
                "remote",
                "hybrid",
                "office",
                "mobile"
              ],
              "enumTitles": [
                "Fully remote",
                "Hybrid",
                "On-site",
                "Mobile"
              ]
            },
            "default": []
          },
          "withSalary": {
            "title": "Only offers with a disclosed salary",
            "type": "boolean",
            "description": "About a third of the offers on this board quote a salary band. Turn this on to skip the rest.",
            "default": false
          },
          "orderBy": {
            "title": "Result order",
            "enum": [
              "DESC",
              "ASC"
            ],
            "type": "string",
            "description": "Newest offers first, or oldest first. (The board also advertises a salary sort, but it does not actually order by salary, so it is not offered here.)",
            "default": "DESC"
          },
          "maxItems": {
            "title": "Max offers",
            "minimum": 0,
            "type": "integer",
            "description": "Stop after this many offers. Set 0 for no limit (the board holds roughly 15 000).",
            "default": 100
          },
          "extractFullDetails": {
            "title": "Extract full details",
            "type": "boolean",
            "description": "Fetch each offer's page for the full description, the employer's application link, company size and coordinates. Slower and pricier, but far richer.",
            "default": false
          },
          "incrementalMode": {
            "title": "Only new and changed offers",
            "type": "boolean",
            "description": "Remembers what the previous run saw and returns only offers that are new, edited or reposted. Ideal for scheduled monitoring.",
            "default": false
          },
          "emitUnchanged": {
            "title": "Include unchanged offers",
            "type": "boolean",
            "description": "With monitoring on, also return offers that did not change.",
            "default": false
          },
          "emitExpired": {
            "title": "Include disappeared offers",
            "type": "boolean",
            "description": "With monitoring on, also report offers that vanished since the previous run.",
            "default": false
          },
          "stateKey": {
            "title": "Monitoring label",
            "type": "string",
            "description": "Name for this monitoring baseline. Two searches with different labels never share history."
          },
          "maxConcurrency": {
            "title": "Max concurrency",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Parallel requests. Lower it if results start coming back empty — the site throttles bursts.",
            "default": 10
          },
          "minConcurrency": {
            "title": "Min concurrency",
            "minimum": 1,
            "type": "integer",
            "description": "Minimum parallel requests to keep in flight.",
            "default": 1
          },
          "maxRequestRetries": {
            "title": "Max request retries",
            "minimum": 0,
            "type": "integer",
            "description": "How many times to retry a failed request before giving up on it.",
            "default": 3
          },
          "maxRequestsPerMinute": {
            "title": "Max requests per minute",
            "minimum": 10,
            "type": "integer",
            "description": "Rate limit. Keep it moderate: this site answers a burst with an empty result rather than an error.",
            "default": 120
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Optional. The site is reachable without a proxy; add one only for very large runs, so the IP can rotate.",
            "default": {
              "useApifyProxy": 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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}