{
  "openapi": "3.0.1",
  "info": {
    "title": "LinkedIn Job Scraper - Public Jobs, No Login",
    "description": "Scrape public LinkedIn job search results without login and export job title, company, location, salary, job description, apply URL, seniority, employment type, industry, and application count fields.",
    "version": "0.1",
    "x-build-id": "La0pc6gVWZaN2Aom1"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/nezha~linkedin-job-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-nezha-linkedin-job-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/nezha~linkedin-job-scraper/runs": {
      "post": {
        "operationId": "runs-sync-nezha-linkedin-job-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/nezha~linkedin-job-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-nezha-linkedin-job-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": [
          "MainKeys"
        ],
        "properties": {
          "MainKeys": {
            "title": "Keywords",
            "type": "array",
            "description": "Job keywords to search on LinkedIn public jobs, for example Controller, Python Engineer, Sales Manager, or Data Analyst.",
            "items": {
              "type": "string"
            }
          },
          "Location": {
            "title": "Location",
            "type": "string",
            "description": "LinkedIn location text. The Actor resolves it through LinkedIn's public GEO typeahead when possible. Empty input defaults to United States."
          },
          "Company_Title": {
            "title": "Company Names",
            "type": "array",
            "description": "Optional LinkedIn company names. The Actor resolves each name through LinkedIn's public COMPANY typeahead and applies the resulting f_C filter.",
            "items": {
              "type": "string"
            }
          },
          "Company_ID": {
            "title": "Company IDs",
            "type": "array",
            "description": "Optional LinkedIn company IDs. Use this when you already know the exact f_C values and want to avoid company-name lookup.",
            "items": {
              "type": "string"
            }
          },
          "Published_at": {
            "title": "Published At",
            "enum": [
              "Any time",
              "Past month",
              "Past week",
              "Past 24 hours"
            ],
            "type": "string",
            "description": "Optional LinkedIn date filter. It maps to f_TPR in LinkedIn public job search.",
            "default": "Past week"
          },
          "Remote_or_OnSite": {
            "title": "Remote or On-site",
            "type": "array",
            "description": "Optional work arrangement filters. Supported values: Remote, On site, Hybrid. They map to LinkedIn f_WT values.",
            "items": {
              "type": "string"
            }
          },
          "Job_Type": {
            "title": "Job Type",
            "type": "array",
            "description": "Optional job type filters. Supported values: Full time, Part time, Contract, Temporary, Volunteer. They map to LinkedIn f_JT values.",
            "items": {
              "type": "string"
            }
          },
          "Experience_Level": {
            "title": "Experience Level",
            "type": "array",
            "description": "Optional seniority filters. Supported values: Internship, Entry level, Associate, Mid Senior level, Director. They map to LinkedIn f_E values.",
            "items": {
              "type": "string"
            }
          },
          "maxItems": {
            "title": "Max Jobs",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Maximum number of job records to save in one run.",
            "default": 100
          },
          "maxListPages": {
            "title": "Max List Pages",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Maximum LinkedIn search result pages to scan per keyword. Each public list page usually contains up to 10 jobs.",
            "default": 100
          },
          "maxConcurrency": {
            "title": "Max Concurrency",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "Concurrent HTTP requests. Keep this low for public LinkedIn pages; 2-4 is usually a safer range than high parallelism.",
            "default": 3
          },
          "maxRetries": {
            "title": "Retries Per Request",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "How many times to retry a failed list or detail request before storing it in FAILED_REQUESTS.",
            "default": 3
          },
          "requestDelaySecs": {
            "title": "Delay Between Requests",
            "minimum": 0,
            "maximum": 30,
            "type": "integer",
            "description": "Polite delay before each HTTP request. The Actor also adds a small random jitter.",
            "default": 2
          },
          "includeDescriptionHtml": {
            "title": "Include Description HTML",
            "type": "boolean",
            "description": "Store the job description HTML in descriptionHtml. Disable to reduce dataset size.",
            "default": true
          },
          "includeNoResultRecords": {
            "title": "Save No-result Rows",
            "type": "boolean",
            "description": "When enabled, a keyword/location with no first-page matches saves one empty row with error_message set.",
            "default": true
          },
          "resolveCompanyIds": {
            "title": "Resolve Company IDs",
            "type": "boolean",
            "description": "When enabled, each detail record attempts to resolve the company ID by company name. Disable for fewer auxiliary requests.",
            "default": true
          },
          "proxyConfiguration": {
            "title": "Proxy Configuration",
            "type": "object",
            "description": "Optional Apify proxy configuration. Use stable country/session settings and modest concurrency for more reliable public LinkedIn runs."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}