get_new_job_ids
Retrieve new job IDs from a specified LinkedIn URL by exploring a defined number of pages. Extracts and returns a list of job IDs for further analysis or tracking.
Instructions
Gets the new job ids retrieved from the LinkedIn url passed as a parameter, exploring
the number of pages specified.
Args:
url: The URL to search for jobs in LinkedIn
num_pages: The number of pages to retrieve ids from
Returns:
A list with the new job IDs retrieved from the explored pages from the URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
num_pages | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"num_pages": {
"default": 1,
"title": "Num Pages",
"type": "integer"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "get_new_job_idsArguments",
"type": "object"
}