{
  "openapi": "3.0.1",
  "info": {
    "title": "Job Postings API - 750k+ jobs, 7 ATS feeds, change-tracked",
    "description": "One query, every ATS-hosted job, deduplicated, with what changed since yesterday. A normalized, change-tracked index built from official public feeds: Greenhouse, Lever, Ashby, SmartRecruiters, Recruitee, Personio and Workday.",
    "version": "0.1",
    "x-build-id": "RePkacT92YrJcoFyE"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/roleset~job-postings-api/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-roleset-job-postings-api",
        "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/roleset~job-postings-api/runs": {
      "post": {
        "operationId": "runs-sync-roleset-job-postings-api",
        "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/roleset~job-postings-api/run-sync": {
      "post": {
        "operationId": "run-sync-roleset-job-postings-api",
        "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",
        "required": [
          "mode"
        ],
        "properties": {
          "mode": {
            "title": "Mode",
            "enum": [
              "search",
              "changes"
            ],
            "type": "string",
            "description": "search: find open postings matching your filters. changes: only what opened, changed, closed or reopened — the one to schedule on a repeat run.",
            "default": "search"
          },
          "q": {
            "title": "Keywords",
            "type": "string",
            "description": "Free text over job title and description, e.g. \"backend engineer\"."
          },
          "title": {
            "title": "Job title",
            "type": "string",
            "description": "Match on the normalized title. \"Sr. Backend Engineer\" also matches \"Senior Backend Engineer\"."
          },
          "company": {
            "title": "Company name",
            "type": "string",
            "description": "Company name, partial match. Use `domain` instead for an exact company."
          },
          "domain": {
            "title": "Company domain",
            "type": "string",
            "description": "Exact match, e.g. acme.com."
          },
          "location": {
            "title": "City or region",
            "type": "string",
            "description": "City or region, partial match — e.g. Berlin, California, Greater London."
          },
          "country": {
            "title": "Country",
            "type": "string",
            "description": "ISO-3166 alpha-2, e.g. US, DE, GB."
          },
          "remote": {
            "title": "Remote only",
            "type": "boolean",
            "description": "Leave unset for both remote and on-site roles."
          },
          "ats": {
            "title": "ATS platform",
            "enum": [
              "greenhouse",
              "lever",
              "ashby",
              "smartrecruiters",
              "recruitee",
              "personio",
              "workday"
            ],
            "type": "string",
            "description": "Restrict to one applicant tracking system. Leave empty for all of them."
          },
          "department": {
            "title": "Department",
            "type": "string",
            "description": "Department as the employer labels it — e.g. Engineering, Sales."
          },
          "employment_type": {
            "title": "Employment type",
            "enum": [
              "full_time",
              "part_time",
              "contract",
              "intern",
              "temporary",
              "volunteer"
            ],
            "type": "string",
            "description": "Normalized across every platform: full_time, part_time, contract, intern, temporary or volunteer."
          },
          "posted_after": {
            "title": "Posted after",
            "type": "string",
            "description": "ISO-8601, e.g. 2026-09-01T00:00:00Z."
          },
          "since": {
            "title": "Changes since",
            "type": "string",
            "description": "Changes mode only. ISO-8601. Defaults to the last 24 hours."
          },
          "event": {
            "title": "Event type",
            "enum": [
              "opened",
              "updated",
              "closed",
              "reopened"
            ],
            "type": "string",
            "description": "Changes mode only. Leave unset for all four."
          },
          "include_description": {
            "title": "Include full descriptions",
            "type": "boolean",
            "description": "Descriptions are large; leave off unless you need the body text.",
            "default": false
          },
          "include_closed": {
            "title": "Include closed postings",
            "type": "boolean",
            "description": "Include postings that have since closed. Off by default, so you get roles someone can still apply to.",
            "default": false
          },
          "maxItems": {
            "title": "Maximum records",
            "minimum": 1,
            "type": "integer",
            "description": "Caps how many records you receive, and therefore what you are charged. Raise it once you know the shape of the data.",
            "default": 100
          },
          "apiKey": {
            "title": "Roleset API key",
            "type": "string",
            "description": "Optional. Leave empty and this actor bills you per record through Apify. Supply your own roleset.io key and the run is billed to that account's allowance instead — Apify will not also charge you per record."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}