{
  "openapi": "3.0.1",
  "info": {
    "title": "AI Job Search Agent — Web Job Finder (BYOK)",
    "description": "An AI agent (Claude, bring your own Anthropic API key) that searches the open web for live job postings matching your free-text query — beyond any single job board. Returns verified records: title, company, location and a working apply URL. Finds roles other scrapers miss.",
    "version": "0.1",
    "x-build-id": "fNdy9iBLPvmsZISN2"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/nomad-agent~web-search-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-nomad-agent-web-search-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/nomad-agent~web-search-scraper/runs": {
      "post": {
        "operationId": "runs-sync-nomad-agent-web-search-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/nomad-agent~web-search-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-nomad-agent-web-search-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": {
          "provider": {
            "title": "AI provider",
            "enum": [
              "anthropic",
              "mistral"
            ],
            "type": "string",
            "description": "Which AI provider runs discovery + extraction. \"anthropic\" (default) uses a Claude agent with Anthropic's built-in web-search tool. \"mistral\" uses keenable (no-auth web search) for discovery plus a Mistral model for per-page judging/extraction -- pick this if you'd rather bring a Mistral key than an Anthropic one.",
            "default": "anthropic"
          },
          "anthropicApiKey": {
            "title": "Anthropic API key",
            "type": "string",
            "description": "Your Anthropic API key (sk-ant-…). Required when provider is \"anthropic\". The actor uses it to run a web-searching AI agent that discovers job postings."
          },
          "model": {
            "title": "Claude model",
            "enum": [
              "claude-haiku-4-5-20251001",
              "claude-sonnet-4-5",
              "claude-opus-4-5"
            ],
            "type": "string",
            "description": "Claude model to use for the discovery agent (provider=\"anthropic\" only). Haiku is fast and inexpensive; switch to Sonnet for higher-quality extraction on complex pages.",
            "default": "claude-haiku-4-5-20251001"
          },
          "mistralApiKey": {
            "title": "Mistral API key",
            "type": "string",
            "description": "Your Mistral API key. Required when provider is \"mistral\". Used only for per-page judging/extraction -- the web search itself goes through keenable, which needs no key."
          },
          "mistralModel": {
            "title": "Mistral model",
            "enum": [
              "mistral-small-latest",
              "mistral-medium-latest",
              "mistral-large-latest"
            ],
            "type": "string",
            "description": "Mistral model for per-page judging/extraction (provider=\"mistral\" only). Medium is the default. Testing found Small matches Medium on quality for this task (extraction is small and well-scoped) at ~5x the speed -- switch to Small if you want faster/cheaper runs.",
            "default": "mistral-medium-latest"
          },
          "keywords": {
            "title": "Keywords / role type",
            "type": "array",
            "description": "Role or technology keywords the agent should search for (e.g. \"frontend\", \"react\", \"typescript\"). Each entry is one keyword or short phrase.",
            "items": {
              "type": "string"
            }
          },
          "locations": {
            "title": "Preferred locations",
            "type": "array",
            "description": "Preferred locations or \"remote\". The agent will bias results toward these and skip obvious mismatches.",
            "items": {
              "type": "string"
            }
          },
          "remote": {
            "title": "Remote preference",
            "enum": [
              "any",
              "remote-only",
              "hybrid",
              "on-site"
            ],
            "type": "string",
            "description": "Remote work preference communicated to the search agent.",
            "default": "any"
          },
          "seniority": {
            "title": "Seniority level",
            "enum": [
              "any",
              "junior",
              "mid",
              "senior",
              "lead"
            ],
            "type": "string",
            "description": "Target seniority level. The agent will prefer postings that match. (Previously free-text; now a fixed list. A saved input with an old free-text value that isn't one of the options below will fail validation on the next run -- pick the closest option and re-save.)",
            "default": "any"
          },
          "titleMustMatch": {
            "title": "Title must contain",
            "type": "array",
            "description": "The agent will prefer postings whose title contains at least one of these terms.",
            "items": {
              "type": "string"
            }
          },
          "titleExclude": {
            "title": "Title must NOT contain",
            "type": "array",
            "description": "The agent will skip postings whose title contains any of these terms.",
            "items": {
              "type": "string"
            }
          },
          "maxItems": {
            "title": "Max items",
            "minimum": 1,
            "maximum": 30,
            "type": "integer",
            "description": "Maximum number of job postings to return. The agent may return fewer if it cannot find enough high-quality matches.",
            "default": 15
          },
          "maxAgeHours": {
            "title": "Max posting age (hours)",
            "minimum": 24,
            "type": "integer",
            "description": "Preferred maximum age of postings in hours. The agent will prefer fresh postings but may include older ones when fresh results are scarce.",
            "default": 168
          },
          "userDescription": {
            "title": "Your own description / request (optional)",
            "type": "string",
            "description": "Free-text description of what you are looking for. The agent uses this as primary signal alongside the structured filters above."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}