{
  "openapi": "3.0.1",
  "info": {
    "title": "LinkedIn Jobs Scraper - Cheap & Fast",
    "description": "Scrape 500+ LinkedIn jobs with company logos. No login required. Cheaper & faster than alternatives with 20+ data fields. Configurable performance, pay-per-result pricing.",
    "version": "0.6",
    "x-build-id": "J4802gRqIb0mdtIAq"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/kalirobot~linkedin-jobs-scraper-fast/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-kalirobot-linkedin-jobs-scraper-fast",
        "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/kalirobot~linkedin-jobs-scraper-fast/runs": {
      "post": {
        "operationId": "runs-sync-kalirobot-linkedin-jobs-scraper-fast",
        "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/kalirobot~linkedin-jobs-scraper-fast/run-sync": {
      "post": {
        "operationId": "run-sync-kalirobot-linkedin-jobs-scraper-fast",
        "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": [
          "title",
          "location",
          "rows"
        ],
        "properties": {
          "title": {
            "title": "Job title",
            "type": "string",
            "description": "The name of the job (e.g. Web developer, Software Engineer, Data Scientist)",
            "default": ""
          },
          "location": {
            "title": "Job location",
            "type": "string",
            "description": "Job location - we automatically resolve to the correct region (e.g., 'Berlin' → 'Berlin, Germany'). Tip: Use specific names like 'Berlin, Germany' instead of just 'Berlin' for better accuracy.",
            "default": "United States"
          },
          "companyName": {
            "title": "Company name",
            "type": "array",
            "description": "The name(s) of the company(ies) (e.g. Google, NASA)",
            "items": {
              "type": "string"
            }
          },
          "companyId": {
            "title": "Company id",
            "type": "array",
            "description": "The ID(s) of the company(ies) (e.g. Facebook: 76987811, Uber: 1815218). Provide only the id numbers.",
            "items": {
              "type": "string"
            }
          },
          "publishedAt": {
            "title": "Published at",
            "enum": [
              "",
              "r86400",
              "r604800",
              "r2592000"
            ],
            "type": "string",
            "description": "Filter jobs by publication date (recommended: Past week for fresh results)",
            "default": "r604800"
          },
          "rows": {
            "title": "Total rows",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "How many jobs do you want to scrape? (e.g. 100)",
            "default": 50
          },
          "workType": {
            "title": "On-site/Remote",
            "enum": [
              "",
              "1",
              "2",
              "3"
            ],
            "type": "string",
            "description": "Select work type to display",
            "default": ""
          },
          "contractType": {
            "title": "Job type",
            "enum": [
              "",
              "F",
              "P",
              "C",
              "T",
              "I",
              "V"
            ],
            "type": "string",
            "description": "Select job type to display",
            "default": ""
          },
          "experienceLevel": {
            "title": "Experience Level",
            "enum": [
              "",
              "1",
              "2",
              "3",
              "4",
              "5"
            ],
            "type": "string",
            "description": "Select the experience level",
            "default": ""
          },
          "proxy": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "⚠️ IMPORTANT: Use DATACENTER proxies (recommended). RESIDENTIAL proxies are 50x more expensive and not necessary for this scraper!",
            "default": {
              "useApifyProxy": true
            }
          },
          "maxRetries": {
            "title": "Max retries on error",
            "minimum": 0,
            "maximum": 5,
            "type": "integer",
            "description": "How many times to retry when encountering network errors? Set to 0 to stop immediately on error, or higher (e.g. 5) to keep trying.",
            "default": 3
          },
          "retryDelay": {
            "title": "Retry delay (seconds)",
            "minimum": 1,
            "maximum": 10,
            "type": "number",
            "description": "How long to wait before retrying after an error? Recommended: 2-5 seconds. Higher = more stable, lower = faster.",
            "default": 2
          },
          "pageDelay": {
            "title": "Delay between pages (seconds)",
            "minimum": 0,
            "maximum": 5,
            "type": "number",
            "description": "How long to wait between scraping pages? Recommended: 1-2 seconds. Higher = less likely to get blocked, lower = faster.",
            "default": 1
          },
          "rateLimitBackoff": {
            "title": "Rate limit backoff multiplier",
            "minimum": 1,
            "maximum": 7,
            "type": "number",
            "description": "When hitting rate limits (429), wait time = (attempt × this value). Recommended: 3-5. Higher = more patient, lower = faster retry.",
            "default": 5
          },
          "concurrency": {
            "title": "Detail fetch concurrency",
            "minimum": 1,
            "maximum": 15,
            "type": "integer",
            "description": "How many job details to fetch in parallel? Higher = faster but more risk of rate limiting. Recommended: 5-10 with proxies, 1-3 without.",
            "default": 10
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}