{
  "openapi": "3.0.1",
  "info": {
    "title": "Lever Postings API — Tech Jobs, Salaries & ATS Data",
    "description": "Unofficial Lever Postings API in one Apify actor. Scrape jobs and structured salary data from any Lever-powered career page — Netflix, Spotify, Shopify, Mixpanel, Lyra Health & 5,000+ more. Pure HTTP, no auth, structured workplaceType, global + EU instances.",
    "version": "1.0",
    "x-build-id": "i6mfjfxbgA8FMfnf0"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/logiover~lever-postings-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-logiover-lever-postings-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/logiover~lever-postings-scraper/runs": {
      "post": {
        "operationId": "runs-sync-logiover-lever-postings-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/logiover~lever-postings-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-logiover-lever-postings-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",
        "required": [
          "mode"
        ],
        "properties": {
          "mode": {
            "title": "Mode",
            "enum": [
              "jobs",
              "jobDetail"
            ],
            "type": "string",
            "description": "What to fetch: a list of jobs from one or more Lever sites, or a deep detail object for specific posting IDs.",
            "default": "jobs"
          },
          "sites": {
            "title": "Lever sites",
            "uniqueItems": true,
            "type": "array",
            "description": "One or more Lever site names. For 'jobDetail' mode only the first site is used. Case-sensitive. Try 'leverdemo' for a guaranteed-working smoke test.",
            "default": [
              "leverdemo"
            ],
            "items": {
              "type": "string"
            }
          },
          "instance": {
            "title": "Instance",
            "enum": [
              "global",
              "eu"
            ],
            "type": "string",
            "description": "Lever runs two regional instances. Most companies are on 'global' (api.lever.co). EU customers (frequent for European-only employers) are on 'eu' (api.eu.lever.co). If you get 404s on 'global', try 'eu'.",
            "default": "global"
          },
          "jobIds": {
            "title": "Job IDs (jobDetail mode only)",
            "uniqueItems": true,
            "type": "array",
            "description": "List of posting UUIDs to fetch. Required when mode = jobDetail. Example: 5ac21346-8e0c-4494-8e7a-3eb92ff77902",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "team": {
            "title": "Team (server-side filter)",
            "type": "array",
            "description": "Lever-native filter. Postings are filtered server-side. Case-sensitive — must match exactly (e.g. 'Engineering' not 'engineering'). Multiple values are OR'ed.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "department": {
            "title": "Department (server-side filter)",
            "type": "array",
            "description": "Lever-native filter. Case-sensitive. Multiple values are OR'ed.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "location": {
            "title": "Location (server-side filter)",
            "type": "array",
            "description": "Lever-native filter. Case-sensitive. Multiple values are OR'ed. Example: 'San Francisco' or 'Remote - US'.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "commitment": {
            "title": "Commitment / employment type (server-side filter)",
            "type": "array",
            "description": "Lever-native filter. Case-sensitive. Examples: 'Full Time', 'Part Time', 'Internship', 'Contract'. Multiple values are OR'ed.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "level": {
            "title": "Level (server-side filter)",
            "type": "array",
            "description": "Lever-native filter. Case-sensitive. Values are customer-defined (e.g. 'Senior', 'Junior', 'Director').",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "limit": {
            "title": "Lever native limit (per site)",
            "minimum": 0,
            "maximum": 10000,
            "type": "integer",
            "description": "Forwarded as Lever's ?limit= parameter. Caps the number of postings the server returns per board. Leave at 0 for no cap.",
            "default": 0
          },
          "skip": {
            "title": "Lever native skip (per site)",
            "minimum": 0,
            "type": "integer",
            "description": "Forwarded as Lever's ?skip= parameter. Use for pagination: skip N postings from the start before returning results.",
            "default": 0
          },
          "group": {
            "title": "Group results (Lever native)",
            "enum": [
              "none",
              "team",
              "commitment",
              "location"
            ],
            "type": "string",
            "description": "Lever's ?group= parameter. When set, the API returns postings grouped by the chosen category. Leave as 'none' for ungrouped output.",
            "default": "none"
          },
          "filterTitleKeywords": {
            "title": "Title contains keywords",
            "type": "array",
            "description": "Client-side: keep only postings whose title contains any of these strings (case-insensitive). Useful for job-role targeting (e.g. 'engineer', 'designer'). Multiple keywords are OR'ed.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "filterWorkplaceTypes": {
            "title": "Workplace type",
            "uniqueItems": true,
            "type": "array",
            "description": "Client-side: keep only postings with these workplace types. Lever's native enum values.",
            "items": {
              "type": "string",
              "enum": [
                "on-site",
                "remote",
                "hybrid",
                "unspecified"
              ]
            },
            "default": []
          },
          "filterCountries": {
            "title": "Country codes",
            "type": "array",
            "description": "Client-side: keep only postings whose 'country' field matches one of these ISO 3166-1 alpha-2 codes (e.g. 'US', 'GB', 'DE'). Case-insensitive.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "filterSalaryMin": {
            "title": "Minimum disclosed salary",
            "minimum": 0,
            "type": "integer",
            "description": "Client-side: keep only postings whose salaryRange.min is >= this number. Postings WITHOUT a disclosed salary are dropped when this filter is active. Set to 0 to disable.",
            "default": 0
          },
          "maxResultsPerSite": {
            "title": "Max results per site (final cap)",
            "minimum": 0,
            "maximum": 100000,
            "type": "integer",
            "description": "Hard cap applied after all filters. 0 = unlimited. Useful for testing or controlling cost."
          },
          "concurrency": {
            "title": "Parallel sites",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "How many sites to fetch in parallel. 5 is a safe default. Higher = faster, but Lever may rate-limit you on huge batches.",
            "default": 5
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}