# AI web job-search agent — example query

**Use case:** 

An AI agent searches the open web for jobs matching a free-text query and returns HTTP-verified links. Bring your own API key.

## Input

```json
{
  "provider": "anthropic",
  "model": "claude-haiku-4-5-20251001",
  "mistralModel": "mistral-medium-latest",
  "openaiModel": "gpt-4.1-mini",
  "keywords": [
    "python developer"
  ],
  "locations": [
    "remote",
    "Europe",
    "Spain"
  ],
  "remote": "any",
  "seniority": "any",
  "titleMustMatch": [
    "frontend",
    "react",
    "typescript"
  ],
  "titleExclude": [
    "intern",
    "manager"
  ],
  "maxItems": 5,
  "maxAgeHours": 168,
  "userDescription": "Looking for a senior React engineer role at a product company, ideally in fintech or developer tooling, fully remote within Europe.",
  "onlyNewSinceLastRun": false
}
```

## Output

```json
{
  "matchScore": {
    "label": "Match score",
    "format": "integer"
  },
  "title": {
    "label": "Job title",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "salary": {
    "label": "Salary",
    "format": "string"
  },
  "postedAt": {
    "label": "Posted date",
    "format": "string"
  },
  "url": {
    "label": "Posting URL",
    "format": "string"
  },
  "verified": {
    "label": "Liveness verified",
    "format": "boolean"
  },
  "snippet": {
    "label": "Snippet",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [AI Job Search Agent — Open-Web Job Finder (BYO AI Key)](https://apify.com/nomad-agent/web-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/nomad-agent/web-search-scraper) to learn more, explore other use cases, and run it yourself.