{
  "openapi": "3.0.1",
  "info": {
    "title": "Linkedin Search Jobs Scraper (no cookie)",
    "description": "Scrape Linkedin search jobs with details information for each job listing",
    "version": "0.0",
    "x-build-id": "44XutX5CBaHT2lyG6"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/unlimitedleadtestinbox~linkedin-search-jobs-scraper-no-cookie/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-unlimitedleadtestinbox-linkedin-search-jobs-scraper-no-cookie",
        "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/unlimitedleadtestinbox~linkedin-search-jobs-scraper-no-cookie/runs": {
      "post": {
        "operationId": "runs-sync-unlimitedleadtestinbox-linkedin-search-jobs-scraper-no-cookie",
        "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/unlimitedleadtestinbox~linkedin-search-jobs-scraper-no-cookie/run-sync": {
      "post": {
        "operationId": "run-sync-unlimitedleadtestinbox-linkedin-search-jobs-scraper-no-cookie",
        "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": [
          "keywords",
          "location"
        ],
        "properties": {
          "keywords": {
            "title": "Keywords or job titles",
            "type": "array",
            "description": "Keywords to search for, one per line",
            "default": [
              "Sales"
            ],
            "items": {
              "type": "string"
            }
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "Location to search in (e.g., France, Paris, New York, Remote)",
            "default": "France"
          },
          "timeRange": {
            "title": "Posted within",
            "enum": [
              "Past 24 hours",
              "Past Week",
              "Past Month",
              "Any time"
            ],
            "type": "string",
            "description": "How recently the job was posted",
            "default": "Past Month"
          },
          "experienceLevel1": {
            "title": "Internship",
            "type": "boolean",
            "description": "Include internship positions",
            "default": false
          },
          "experienceLevel2": {
            "title": "Entry level",
            "type": "boolean",
            "description": "Include entry level positions",
            "default": false
          },
          "experienceLevel3": {
            "title": "Associate",
            "type": "boolean",
            "description": "Include associate level positions",
            "default": false
          },
          "experienceLevel4": {
            "title": "Mid-Senior level",
            "type": "boolean",
            "description": "Include mid-senior level positions",
            "default": false
          },
          "experienceLevel5": {
            "title": "Director",
            "type": "boolean",
            "description": "Include director level positions",
            "default": false
          },
          "experienceLevel6": {
            "title": "Executive",
            "type": "boolean",
            "description": "Include executive level positions",
            "default": false
          },
          "jobTypeFullTime": {
            "title": "Full-time",
            "type": "boolean",
            "description": "Include full-time positions",
            "default": false
          },
          "jobTypePartTime": {
            "title": "Part-time",
            "type": "boolean",
            "description": "Include part-time positions",
            "default": false
          },
          "jobTypeContract": {
            "title": "Contract",
            "type": "boolean",
            "description": "Include contract positions",
            "default": false
          },
          "jobTypeTemporary": {
            "title": "Temporary",
            "type": "boolean",
            "description": "Include temporary positions",
            "default": false
          },
          "jobTypeVolunteer": {
            "title": "Volunteer",
            "type": "boolean",
            "description": "Include volunteer positions",
            "default": false
          },
          "jobTypeInternship": {
            "title": "Internship",
            "type": "boolean",
            "description": "Include internship positions",
            "default": false
          },
          "workplaceOnSite": {
            "title": "On-site",
            "type": "boolean",
            "description": "Include on-site positions",
            "default": false
          },
          "workplaceRemote": {
            "title": "Remote",
            "type": "boolean",
            "description": "Include remote positions",
            "default": true
          },
          "workplaceHybrid": {
            "title": "Hybrid",
            "type": "boolean",
            "description": "Include hybrid positions",
            "default": false
          },
          "maxItems": {
            "title": "Maximum number of jobs",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Maximum number of jobs to scrape (LinkedIn limits to 1000 results maximum)",
            "default": 1000
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Proxy settings for the crawler (recommended to use Apify proxy)",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ]
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}