get_url_for_jobs_search
Generate an encoded URL for job searches on LinkedIn, compatible with the platform's API. Input specific job queries to retrieve tailored search links for efficient job hunting.
Instructions
Generates a properly encoded URL that can be used to search for jobs on LinkedIn.
The generated URL is compatible with LinkedIn's job search API.
Args:
query: The search query string for jobs in LinkedIn.
Returns:
str: A properly encoded URL to search for jobs on LinkedIn.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | No | Looking for Research Enginer/Machine Learning/AI Engineer jobs in San Francisco |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"default": "Looking for Research Enginer/Machine Learning/AI Engineer jobs in San Francisco",
"title": "Query",
"type": "string"
}
},
"title": "get_url_for_jobs_searchArguments",
"type": "object"
}