{
  "openapi": "3.0.1",
  "info": {
    "title": "LinkedIn Jobs Scraper - No Cookies, Fast & Cheap",
    "description": "Scrape LinkedIn job postings without a login or cookies: title, company, location, salary, posted date, full description, seniority, employment type, industries and apply links. HTTP-first engine, no browser, from $0.30 per 1,000 jobs. Export CSV, Excel, JSON.",
    "version": "0.2",
    "x-build-id": "0d3auKxZFw6cE6zqR"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/andrew_babo~linkedin-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-andrew_babo-linkedin-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/andrew_babo~linkedin-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-andrew_babo-linkedin-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/andrew_babo~linkedin-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-andrew_babo-linkedin-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": {
          "searchTerms": {
            "title": "Search terms",
            "type": "array",
            "description": "Job keywords to search, e.g. [\"software engineer\", \"data analyst\"].",
            "items": {
              "type": "string"
            }
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "Free-form location, e.g. \"Singapore\" or \"London, United Kingdom\". Resolved by LinkedIn server-side."
          },
          "locations": {
            "title": "Multiple locations",
            "type": "array",
            "description": "Run the same search terms across several locations. Also the way to break past LinkedIn's 1,000-results-per-query ceiling.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "geoId": {
            "title": "Geo ID",
            "type": "string",
            "description": "Optional LinkedIn numeric geo ID. Only needed when combined with a radius."
          },
          "distance": {
            "title": "Radius (miles)",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Search radius around the location. Requires a geo ID, which is resolved automatically for well-known places."
          },
          "datePosted": {
            "title": "Date posted",
            "enum": [
              "any",
              "past24h",
              "pastWeek",
              "pastMonth",
              "day",
              "week",
              "month"
            ],
            "type": "string",
            "description": "Both spellings are accepted: pastWeek/pastMonth and the shorter week/month used by other LinkedIn actors.",
            "default": "any"
          },
          "experienceLevel": {
            "title": "Experience level",
            "type": "array",
            "description": "1 internship, 2 entry, 3 associate, 4 mid-senior, 5 director, 6 executive.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "jobType": {
            "title": "Job type",
            "type": "array",
            "description": "F full-time, P part-time, C contract, T temporary, I internship, V volunteer, O other.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "workplaceType": {
            "title": "Workplace type",
            "type": "array",
            "description": "1 on-site, 2 remote, 3 hybrid.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "companyIds": {
            "title": "Company IDs",
            "type": "array",
            "description": "Restrict to specific LinkedIn company IDs (numeric, not slugs).",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "easyApplyOnly": {
            "title": "Easy Apply only",
            "type": "boolean",
            "description": "Easy Apply only.",
            "default": false
          },
          "sortBy": {
            "title": "Sort by",
            "enum": [
              "relevance",
              "recent"
            ],
            "type": "string",
            "description": "Sort by.",
            "default": "relevance"
          },
          "startUrls": {
            "title": "Start URLs",
            "type": "array",
            "description": "Paste LinkedIn job search URLs directly instead of using the filters above.",
            "default": [],
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "maxItems": {
            "title": "Max jobs",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum jobs to extract. LinkedIn caps any single query at 1,000 — use multiple locations or date windows to go beyond.",
            "default": 100
          },
          "scrapeJobDetails": {
            "title": "Open each job page",
            "type": "boolean",
            "description": "On: full description, seniority, employment type, job function, industries, apply URL. Off: listing fields only, roughly 25x cheaper because one request covers 25 jobs.",
            "default": true
          },
          "speedMode": {
            "title": "Speed mode",
            "enum": [
              "turbo",
              "fast",
              "balanced",
              "accurate"
            ],
            "type": "string",
            "description": "Trade-off between wall-clock speed and retry depth.",
            "default": "turbo"
          },
          "maxConcurrency": {
            "title": "Max concurrency",
            "minimum": 1,
            "maximum": 60,
            "type": "integer",
            "description": "Upper bound on parallel requests. Leave empty to use the speed mode default."
          },
          "liAtCookie": {
            "title": "LinkedIn li_at cookie (optional)",
            "type": "string",
            "description": "Leave empty. Only needed for fields LinkedIn hides from logged-out visitors (exact applicant count, job poster identity). Using your own account carries a restriction risk."
          },
          "failOnZeroResults": {
            "title": "Fail run when nothing is extracted",
            "type": "boolean",
            "description": "Fail run when nothing is extracted.",
            "default": true
          },
          "includeRunSummary": {
            "title": "Include run summary in dataset",
            "type": "boolean",
            "description": "Append one final item with coverage, request counts, stop reason and estimated cost. Off by default so the dataset holds only job rows; the same summary is always written to the key-value store under STATS.",
            "default": false
          },
          "maxRunTimeSecs": {
            "title": "Max run time (seconds)",
            "minimum": 60,
            "maximum": 86400,
            "type": "integer",
            "description": "Max run time (seconds).",
            "default": 3600
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Residential proxies are strongly recommended; datacenter IPs get blocked by LinkedIn within minutes.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ]
            }
          },
          "scrapeCompanyDetails": {
            "title": "Attach company details to each job",
            "type": "boolean",
            "description": "Opens each employer's LinkedIn company page once (deduplicated, cached 30 days) and adds companyWebsite, companyEmployeesCount, companyIndustry, companyAddress and companyCountry to every job.",
            "default": false
          },
          "pushCompanies": {
            "title": "Also push the unique company list",
            "type": "boolean",
            "description": "Adds one extra row per unique employer (slug, name, website, headcount, industry, country). Always stored in the key-value store under COMPANIES.",
            "default": false
          },
          "companyCacheTtlDays": {
            "title": "Company cache (days)",
            "minimum": 0,
            "maximum": 365,
            "type": "integer",
            "description": "Reuse company profiles scraped within this many days.",
            "default": 30
          }
        }
      },
      "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}