{
  "openapi": "3.0.1",
  "info": {
    "title": "DCZ.gov.ua Scraper: Ukraine Government Jobs & Vacancies",
    "description": "Scrape official job listings from dcz.gov.ua, Ukraine's State Employment Service. Returns vacancy title, employer, oblast, city, salary in UAH, employment type, industry, veteran/IDP flags, and job URL. Covers 230,000+ active vacancies across all Ukrainian oblasts.",
    "version": "0.3",
    "x-build-id": "8VICPy40F95ZgRLek"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/santamaria-automations~dcz-gov-ua-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-santamaria-automations-dcz-gov-ua-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/santamaria-automations~dcz-gov-ua-scraper/runs": {
      "post": {
        "operationId": "runs-sync-santamaria-automations-dcz-gov-ua-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/santamaria-automations~dcz-gov-ua-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-santamaria-automations-dcz-gov-ua-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": {
          "searchQueries": {
            "title": "Search Keywords (Ukrainian)",
            "type": "array",
            "description": "One or more job title keywords to search on DCZ.gov.ua. Use Ukrainian language for best results. Examples: 'програміст' (programmer), 'водій' (driver), 'лікар' (doctor), 'вчитель' (teacher), 'бухгалтер' (accountant). Leave empty to retrieve all open vacancies.",
            "items": {
              "type": "string"
            }
          },
          "startUrls": {
            "title": "Direct Job URLs",
            "type": "array",
            "description": "Direct DCZ.gov.ua job page URLs. Example: https://www.dcz.gov.ua/job/single/05252608200011",
            "items": {
              "type": "string"
            }
          },
          "location": {
            "title": "Location (Oblast / City)",
            "type": "string",
            "description": "Ukrainian oblast (region) or major city to filter results. Examples: 'Київ', 'Харківська', 'Львів', 'Одеська', 'Дніпропетровська'. English transliterations also accepted: 'Kyiv', 'Kharkiv', 'Lviv', 'Odesa', 'Dnipro'. Leave empty for all of Ukraine."
          },
          "branch": {
            "title": "Industry / Branch",
            "type": "string",
            "description": "Filter by industry sector using Ukrainian DCZ branch label. Examples: 'ІТ', 'медицина', 'освіта', 'будівництво', 'транспорт', 'торгівля', 'державна служба'. Leave empty for all industries."
          },
          "workCondition": {
            "title": "Employment Type",
            "enum": [
              "",
              "повна",
              "неповна",
              "тимчасова",
              "дистанційна"
            ],
            "type": "string",
            "description": "Filter by employment type using DCZ values: 'повна' (full-time), 'неповна' (part-time), 'тимчасова' (temporary), 'дистанційна' (remote). Leave empty for all types.",
            "default": ""
          },
          "minSalary": {
            "title": "Minimum Salary (UAH)",
            "type": "integer",
            "description": "Only return vacancies with salary at or above this value in Ukrainian hryvnia (UAH). 0 = no filter. Ukraine minimum wage 2026 is approximately 8000 UAH/month.",
            "default": 0
          },
          "filterVeteran": {
            "title": "Veteran-Priority Listings Only",
            "type": "boolean",
            "description": "When enabled, returns only vacancies flagged as priority for Ukrainian veterans (учасники бойових дій).",
            "default": false
          },
          "filterInvalid": {
            "title": "Disability-Accessible Listings Only",
            "type": "boolean",
            "description": "When enabled, returns only vacancies marked as accessible for people with disabilities.",
            "default": false
          },
          "includeJobDetails": {
            "title": "Charge as Full Job Detail",
            "type": "boolean",
            "description": "The DCZ API returns all available fields in a single request. Enabling this flag charges the higher job-detail-result PPE event rate instead of job-serp-result. Use when you need the description and contact fields.",
            "default": false
          },
          "maxResults": {
            "title": "Max Total Results",
            "minimum": 1,
            "maximum": 50000,
            "type": "integer",
            "description": "Total results cap across all search queries. DCZ has 230,000+ active vacancies.",
            "default": 5
          },
          "maxResultsPerQuery": {
            "title": "Max Results per Query",
            "minimum": 1,
            "type": "integer",
            "description": "Maximum results returned per individual search keyword.",
            "default": 5
          },
          "maxConcurrency": {
            "title": "Max Concurrency",
            "minimum": 1,
            "maximum": 8,
            "type": "integer",
            "description": "Maximum parallel requests. Keep at 3-5 to be respectful to the government API.",
            "default": 3
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}