{
  "openapi": "3.0.1",
  "info": {
    "title": "Xing Job Scraper – Extract Job Listings & Details",
    "description": "$3/1K 🔥 XING HR & recruiter lead scraper for DACH 🇩🇪🇦🇹🇨🇭! Names, job titles, companies & profiles for B2B sourcing & recruiting. JSON, CSV, Excel or API in seconds. Search & export thousands of professional leads. Fast & GDPR-aware ⚡",
    "version": "2.0",
    "x-build-id": "Jq4DaCYcaDBEsZUug"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/ninhothedev~xing-hr-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-ninhothedev-xing-hr-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/ninhothedev~xing-hr-scraper/runs": {
      "post": {
        "operationId": "runs-sync-ninhothedev-xing-hr-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/ninhothedev~xing-hr-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-ninhothedev-xing-hr-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": "One or more Xing job search URLs to crawl. Leave empty and use searchKeyword instead to let the scraper build the URL automatically.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "searchKeyword": {
            "title": "Search keyword",
            "type": "string",
            "description": "Job title or keyword to search for (e.g. \"Softwareentwickler\", \"Marketing Manager\"). Ignored when startUrls is set.",
            "default": ""
          },
          "searchLocation": {
            "title": "Location",
            "type": "string",
            "description": "City or region to filter by (e.g. \"Berlin\", \"München\"). Leave empty for Germany-wide.",
            "default": ""
          },
          "smartSearch": {
            "title": "Smart search (synonyms)",
            "type": "boolean",
            "description": "Automatically expand the search keyword with German/English synonyms (e.g. \"Softwareentwickler\" → \"Software Engineer\", \"Developer\"). Increases coverage.",
            "default": true
          },
          "maxSearchVariants": {
            "title": "Max search variants",
            "minimum": 1,
            "maximum": 8,
            "type": "integer",
            "description": "How many keyword variants to search when Smart search is on (1 = keyword only, up to 8). Default 1 keeps a plain run fast; raise it for wider coverage.",
            "default": 1
          },
          "maxListPages": {
            "title": "Max result pages",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Maximum number of search result pages to crawl per keyword variant (20 jobs per page). Default 1 keeps a plain run fast; raise it for more results.",
            "default": 1
          },
          "maxJobDetails": {
            "title": "Max job details",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "Maximum total number of individual job listings to scrape. Default 3 keeps a plain run fast; raise it (up to 500) to export more leads.",
            "default": 3
          },
          "employmentType": {
            "title": "Employment type",
            "enum": [
              "",
              "FULL_TIME",
              "PART_TIME",
              "FREELANCER",
              "STUDENT"
            ],
            "type": "string",
            "description": "Filter by employment type. Leave empty for all types.",
            "default": ""
          },
          "careerLevel": {
            "title": "Career level",
            "enum": [
              "",
              "ENTRY",
              "PROFESSIONAL",
              "MANAGER",
              "EXECUTIVE"
            ],
            "type": "string",
            "description": "Filter by career level. Leave empty for all levels.",
            "default": ""
          },
          "workplace": {
            "title": "Workplace",
            "enum": [
              "",
              "full_remote",
              "hybrid"
            ],
            "type": "string",
            "description": "Filter by workplace model. Leave empty for all.",
            "default": ""
          },
          "sortBy": {
            "title": "Sort results by",
            "enum": [
              "date",
              "relevance"
            ],
            "type": "string",
            "description": "Sort order for search results.",
            "default": "date"
          },
          "salaryMin": {
            "title": "Minimum salary (€/year)",
            "minimum": 0,
            "type": "integer",
            "description": "Filter jobs with salary at or above this amount. Set to 0 to disable.",
            "default": 0
          },
          "salaryMax": {
            "title": "Maximum salary (€/year)",
            "minimum": 0,
            "type": "integer",
            "description": "Filter jobs with salary at or below this amount. Set to 0 to disable.",
            "default": 0
          },
          "useApifyProxy": {
            "title": "Use Apify Proxy",
            "type": "boolean",
            "description": "Route requests through Apify Proxy. Highly recommended — Xing blocks datacenter IPs.",
            "default": true
          },
          "proxyCountryCode": {
            "title": "Proxy country",
            "enum": [
              "DE",
              "AT",
              "CH",
              "US",
              "GB"
            ],
            "type": "string",
            "description": "Country for the proxy exit node. Use DE for best results on xing.com.",
            "default": "DE"
          },
          "proxyGroup": {
            "title": "Proxy group",
            "enum": [
              "RESIDENTIAL",
              "BUYPROXIES94952",
              "SHADER"
            ],
            "type": "string",
            "description": "Apify Proxy group. RESIDENTIAL is strongly recommended for Xing.",
            "default": "RESIDENTIAL"
          },
          "maxConcurrency": {
            "title": "Max parallel requests",
            "minimum": 1,
            "maximum": 4,
            "type": "integer",
            "description": "Number of browser tabs running in parallel. Keep low (1–2) to avoid detection.",
            "default": 2
          },
          "requestDelayMinMs": {
            "title": "Delay min (ms)",
            "minimum": 0,
            "maximum": 10000,
            "type": "integer",
            "description": "Minimum wait between page requests in milliseconds. Recommended floor is 500 ms — any smaller value (including 0) is accepted and automatically clamped up to 500 ms with a warning in the log, so a run never fails on validation.",
            "default": 1000
          },
          "requestDelayMaxMs": {
            "title": "Delay max (ms)",
            "minimum": 0,
            "maximum": 15000,
            "type": "integer",
            "description": "Maximum wait between page requests in milliseconds. Recommended floor is 1000 ms — any smaller value (including 0) is accepted and automatically clamped up to 1000 ms with a warning in the log, and it is lifted to at least the minimum delay if it would end up lower.",
            "default": 2500
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}