{
  "openapi": "3.0.1",
  "info": {
    "title": "LinkedIn Easy Apply Bot — Auto-Apply with AI Filters",
    "description": "Automatically applies to LinkedIn Easy Apply jobs matching your profile. Filters by language, role relevance, and Language fluency requirements. Fills all form fields using your profile data. Requires a valid LinkedIn session cookie.",
    "version": "0.1",
    "x-build-id": "5BEkg2nMpPrqLjdsO"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/sunny_spade~linkedin-easy-apply-bot/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-sunny_spade-linkedin-easy-apply-bot",
        "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/sunny_spade~linkedin-easy-apply-bot/runs": {
      "post": {
        "operationId": "runs-sync-sunny_spade-linkedin-easy-apply-bot",
        "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/sunny_spade~linkedin-easy-apply-bot/run-sync": {
      "post": {
        "operationId": "run-sync-sunny_spade-linkedin-easy-apply-bot",
        "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": [
          "linkedinCookies",
          "browserbaseApiKey",
          "browserbaseProjectId",
          "profile"
        ],
        "properties": {
          "linkedinCookies": {
            "title": "LinkedIn Session Cookies (JSON)",
            "type": "string",
            "description": "Your LinkedIn cookies as a JSON array. Export from browser DevTools → Application → Cookies → linkedin.com. Must include 'li_at'."
          },
          "browserbaseApiKey": {
            "title": "Browserbase API Key",
            "type": "string",
            "description": "Your Browserbase API key from browserbase.com/settings. The bot uses Browserbase to run a real Chrome browser with a residential IP — this is what allows it to bypass LinkedIn's bot detection."
          },
          "browserbaseProjectId": {
            "title": "Browserbase Project ID",
            "type": "string",
            "description": "Your Browserbase project ID from browserbase.com/settings. Find it in the project settings panel."
          },
          "profile": {
            "title": "Your Profile",
            "type": "object",
            "description": "Personal and contact information used to fill application forms.",
            "default": {
              "first_name": "John",
              "last_name": "Doe",
              "email": "john.doe@example.com",
              "phone": "+49123456789",
              "city": "Berlin",
              "linkedin_url": "https://www.linkedin.com/in/johndoe",
              "current_title": "Operations Manager",
              "current_employer": "",
              "nationality": "Indian",
              "gender": "Male",
              "age": 35,
              "cover_letter": ""
            }
          },
          "experience": {
            "title": "Experience Summary",
            "type": "object",
            "description": "Total and domain-specific years of experience — used to answer numeric form fields like 'how many years of X experience?'",
            "default": {
              "total_years": 8,
              "management_years": 5,
              "amazon_years": 6
            }
          },
          "skillsYears": {
            "title": "Skills → Years Map",
            "type": "object",
            "description": "Map of skill keyword to years of experience. Used for form fields asking about specific tools or technologies.",
            "default": {
              "sql": 4,
              "python": 3,
              "tableau": 4,
              "excel": 7,
              "power bi": 3,
              "salesforce": 2,
              "sap": 1
            }
          },
          "preferences": {
            "title": "Preferences",
            "type": "object",
            "description": "Salary expectations and other form-answer preferences.",
            "default": {
              "salary_expectation_eur": 65000
            }
          },
          "searchConfig": {
            "title": "Job Search Configuration",
            "type": "object",
            "description": "Keywords, location, and pacing limits for the job search.",
            "default": {
              "keywords": [
                "Operations Manager",
                "Program Manager",
                "Supply Chain Manager",
                "Logistics Manager",
                "Team Lead Operations"
              ],
              "location": "Germany",
              "maxJobsPerRun": 50,
              "datePosted": "r604800",
              "minDelayBetweenAppsSeconds": 45,
              "maxDelayBetweenAppsSeconds": 90,
              "dailyApplicationCap": 40
            }
          },
          "dryRun": {
            "title": "Dry Run (no actual submissions)",
            "type": "boolean",
            "description": "If true, the bot finds and filters matching jobs but does NOT submit applications. Run this first to verify your configuration.",
            "default": false
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}