{
  "openapi": "3.0.1",
  "info": {
    "title": "XING Jobs (DACH) Scraper",
    "description": "Analyze buyer-authorized or licensed job exports without scraping or logins. Get stable job identity, evidence, freshness, confidence gaps, review priority, safe next actions, and current-run delivery reconciliation.",
    "version": "0.2",
    "x-build-id": "WIiSYXWatswiRr68C"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/zinin~xing-jobs/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-zinin-xing-jobs",
        "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/zinin~xing-jobs/runs": {
      "post": {
        "operationId": "runs-sync-zinin-xing-jobs",
        "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/zinin~xing-jobs/run-sync": {
      "post": {
        "operationId": "run-sync-zinin-xing-jobs",
        "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": {
          "schemaVersion": {
            "title": "Contract version",
            "enum": [
              "2.0"
            ],
            "type": "string",
            "description": "Closed public input contract version.",
            "default": "2.0"
          },
          "authorization": {
            "title": "Rights confirmation",
            "enum": [
              "I confirm I am authorized to process and deliver these job records"
            ],
            "type": "string",
            "description": "Required for paid job records.",
            "default": "I confirm I am authorized to process and deliver these job records"
          },
          "sourceContext": {
            "title": "Source context",
            "enum": [
              "buyer_licensed_export",
              "employer_owned_feed",
              "ats_export",
              "other_authorized_source"
            ],
            "type": "string",
            "description": "Buyer-attested origin category for the authorized records.",
            "default": "buyer_licensed_export"
          },
          "jobs": {
            "title": "Authorized job records",
            "minItems": 1,
            "maxItems": 100,
            "type": "array",
            "description": "One to 100 closed job export records. One valid unique delivered record is one potential paid result.",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "required": [
                "jobId",
                "url",
                "title",
                "sourceName",
                "sourceLicense"
              ],
              "properties": {
                "jobId": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 160,
                  "pattern": "\\S",
                  "description": "Licensed job export property: jobId.",
                  "title": "Job Id"
                },
                "url": {
                  "type": "string",
                  "minLength": 9,
                  "maxLength": 500,
                  "pattern": "^https://",
                  "description": "Licensed job export property: url.",
                  "title": "Url"
                },
                "title": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 300,
                  "pattern": "\\S",
                  "description": "Licensed job export property: title.",
                  "title": "Title"
                },
                "company": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 300,
                  "pattern": "\\S",
                  "description": "Licensed job export property: company.",
                  "title": "Company"
                },
                "companyUrl": {
                  "type": "string",
                  "minLength": 9,
                  "maxLength": 500,
                  "pattern": "^https://",
                  "description": "Licensed job export property: companyUrl.",
                  "title": "Company Url"
                },
                "location": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 300,
                  "pattern": "\\S",
                  "description": "Licensed job export property: location.",
                  "title": "Location"
                },
                "country": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 100,
                  "pattern": "\\S",
                  "description": "Licensed job export property: country.",
                  "title": "Country"
                },
                "employmentType": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 120,
                  "pattern": "\\S",
                  "description": "Licensed job export property: employmentType.",
                  "title": "Employment Type"
                },
                "postedDate": {
                  "type": "string",
                  "maxLength": 40,
                  "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(?:\\.\\d{1,9})?Z$",
                  "description": "Licensed job export property: postedDate.",
                  "title": "Posted Date"
                },
                "validThrough": {
                  "type": "string",
                  "maxLength": 40,
                  "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(?:\\.\\d{1,9})?Z$",
                  "description": "Licensed job export property: validThrough.",
                  "title": "Valid Through"
                },
                "salary": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 200,
                  "pattern": "\\S",
                  "description": "Licensed job export property: salary.",
                  "title": "Salary"
                },
                "description": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 4000,
                  "pattern": "\\S",
                  "description": "Licensed job export property: description.",
                  "title": "Description"
                },
                "sourceName": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 200,
                  "pattern": "\\S",
                  "description": "Licensed job export property: sourceName.",
                  "title": "Source Name"
                },
                "sourceLicense": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 500,
                  "pattern": "\\S",
                  "description": "Licensed job export property: sourceLicense.",
                  "title": "Source License"
                },
                "sourceRetrievedAt": {
                  "type": "string",
                  "maxLength": 40,
                  "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(?:\\.\\d{1,9})?Z$",
                  "description": "Licensed job export property: sourceRetrievedAt.",
                  "title": "Source Retrieved At"
                }
              }
            }
          },
          "max_items": {
            "title": "Legacy max items",
            "minimum": 1,
            "maximum": 200,
            "type": "integer",
            "description": "Accepted only for migration; no source is fetched."
          },
          "freshness_days": {
            "title": "Legacy freshness days",
            "minimum": 1,
            "maximum": 90,
            "type": "integer",
            "description": "Accepted only for migration; no source is fetched."
          },
          "keyword_filter": {
            "title": "Legacy keyword filter",
            "maxLength": 300,
            "type": "string",
            "description": "Accepted only for migration; no source is fetched."
          },
          "fetch_full_description": {
            "title": "Legacy description flag",
            "type": "boolean",
            "description": "Accepted only for migration; no source is fetched."
          },
          "sitemap_override_url": {
            "title": "Legacy sitemap override",
            "maxLength": 500,
            "type": "string",
            "description": "Accepted only for migration and never fetched."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}