{
  "openapi": "3.0.1",
  "info": {
    "title": "SmartRecruiters Public Jobs Scraper",
    "description": "Scrape public SmartRecruiters job postings from one or many company career pages into clean, flat, CSV-friendly hiring-intelligence rows - no login, cookies, or API key required.",
    "version": "1.0",
    "x-build-id": "wKh8oYZMZH4PodxYi"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/coregent~smartrecruiters-public-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-coregent-smartrecruiters-public-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/coregent~smartrecruiters-public-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-coregent-smartrecruiters-public-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/coregent~smartrecruiters-public-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-coregent-smartrecruiters-public-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": {
          "companySlugs": {
            "title": "Company slugs",
            "type": "array",
            "description": "SmartRecruiters company identifiers, for example \"BoschGroup\", \"Visa\", \"SmartRecruiters\". Find the slug in a career page URL such as https://jobs.smartrecruiters.com/SmartRecruiters. Neither field is required on its own — provide EITHER Company slugs OR Start URLs (you don't need both).",
            "default": [
              "SmartRecruiters"
            ],
            "items": {
              "type": "string"
            }
          },
          "startUrls": {
            "title": "Start URLs",
            "type": "array",
            "description": "Alternative to Company slugs: paste SmartRecruiters career or job URLs (jobs.smartrecruiters.com / careers.smartrecruiters.com / www.smartrecruiters.com/{company}); the company slug is extracted automatically. Leave empty if you used Company slugs.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "query": {
            "title": "Search keyword",
            "type": "string",
            "description": "Keyword to search job titles/locations where supported (sent as the API q parameter and used as a local fallback filter). Leave empty to collect all postings.",
            "default": ""
          },
          "maxResults": {
            "title": "Max results",
            "minimum": 1,
            "maximum": 50000,
            "type": "integer",
            "description": "Maximum number of saved unique jobs across the whole run (not per company). Range 1-50000.",
            "default": 1000
          },
          "countryCode": {
            "title": "Country code",
            "type": "string",
            "description": "Filter jobs by country, ISO-style code where available (for example \"us\", \"gb\", \"au\"). Leave empty for all countries.",
            "default": ""
          },
          "region": {
            "title": "Region / state",
            "type": "string",
            "description": "Filter jobs by region or state text. Leave empty for all regions.",
            "default": ""
          },
          "city": {
            "title": "City",
            "type": "string",
            "description": "Filter jobs by city text. Leave empty for all cities.",
            "default": ""
          },
          "locationTypes": {
            "title": "Location types",
            "type": "array",
            "description": "Filter by work arrangement. \"Any\" cannot be combined with the others.",
            "items": {
              "type": "string",
              "enum": [
                "ANY",
                "REMOTE",
                "HYBRID",
                "ONSITE"
              ],
              "enumTitles": [
                "Any",
                "Remote",
                "Hybrid",
                "On-site"
              ]
            },
            "default": [
              "ANY"
            ]
          },
          "language": {
            "title": "Language",
            "type": "string",
            "description": "Request localized posting content where supported (for example \"en\", \"en-GB\", \"fr-CA\", \"pt-BR\"). Sent as the API language / Accept-Language hint.",
            "default": ""
          },
          "postedAfter": {
            "title": "Posted after",
            "type": "string",
            "description": "Collect only jobs released/posted on or after this ISO date (for example \"2026-01-01\"). Leave empty for all dates.",
            "default": ""
          },
          "titleIncludeKeywords": {
            "title": "Title include keywords",
            "type": "array",
            "description": "Keep only jobs whose title contains one of these terms (case-insensitive). Leave empty to keep all.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "titleExcludeKeywords": {
            "title": "Title exclude keywords",
            "type": "array",
            "description": "Exclude jobs whose title contains one of these terms (case-insensitive), for example \"intern\".",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "departmentKeywords": {
            "title": "Department keywords",
            "type": "array",
            "description": "Keep only jobs whose department or function contains one of these terms (case-insensitive), for example \"engineering\", \"sales\".",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "includeDescriptions": {
            "title": "Include job descriptions",
            "type": "boolean",
            "description": "Fetch each posting's detail to extract plain-text description fields (company description, job description, qualifications, additional information). Required for full descriptions and the most accurate public URLs.",
            "default": true
          },
          "includeHtmlDescriptions": {
            "title": "Include raw HTML descriptions",
            "type": "boolean",
            "description": "Also output the raw HTML description blocks (company description, job description, qualifications, additional information). Enabled by default; turn off to keep CSV output lighter.",
            "default": true
          },
          "deduplicate": {
            "title": "Deduplicate jobs",
            "type": "boolean",
            "description": "Remove duplicate jobs across companies/URLs by UUID, ID, or canonical URL so you are not charged for duplicates.",
            "default": true
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Apify Proxy configuration. Defaults to Apify Proxy enabled. Apify Residential is NOT supported and will fail the run at startup; if you need residential routing, supply your own provider via Custom proxy URLs (proxyUrls).",
            "default": {
              "useApifyProxy": true
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}