search_linkedin_jobs
Find LinkedIn job postings by keyword and location, returning matched jobs with title, company, location, URL, and posting date from public search results.
Instructions
Search LinkedIn public job postings and return a list of matched jobs.
Scrapes LinkedIn's public job search results over the network (no login required) and returns a list of dicts, one per posting, typically with keys: title, company, location, url, and posted_date. Returns an empty list if no postings match or the query yields no results. Live web scraping, so results reflect LinkedIn at call time and may vary between runs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Job title or keywords as a string. Example: "machine learning engineer". No default (required). | |
| location | No | Location filter as a string; city, region, or country. Example: "London" or "United Kingdom". No default (required). | |
| max_pages | No | Number of result pages to scrape, as an integer. Each extra page adds jobs but more scraping time. Example: 2. Default: 1. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | ||
| count | No | ||
| errors | No | ||
| scraper | No | ||
| source_urls | No |