Search LinkedIn jobs
Search for job postings on LinkedIn with various filters. Supports pagination and multiple filter criteria including location, job type, experience level, and more. Falls back to unified search if primary search returns no results.
/search/jobsSearch LinkedIn jobs
Search for job postings on LinkedIn with various filters. Supports pagination and multiple filter criteria including location, job type, experience level, and more. Falls back to unified search if primary search returns no results.
Code Examples
curl -X POST 'https://api.connectsafely.ai/linkedin/search/jobs' \ -H 'Authorization: Bearer <your_api_key>' \ -H 'Content-Type: application/json' \ -d '{"accountId":"acc_12345","keywords":"","count":25,"start":0,"filters":{"locationId":"San Francisco, CA","geoUrn":"urn:li:example:123456","companyIds":["Acme Inc"],"jobType":["default"],"experienceLevel":["example_value"],"workplaceType":["default"],"datePosted":"2024-01-15","industry":["Technology"],"easyApply":false}}'Parameters
No parameters.
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
accountId | string | No | LinkedIn account ID to use for the search. If not provided, uses the default account. |
keywords | string | No | Search keywords for job title, company, or description |
count | number | No | Number of results to return per page |
start | number | No | Pagination offset (0-indexed) |
filters | object | No | Optional filters to narrow down search results |
Example
{
"accountId": "acc_12345",
"keywords": "",
"count": 25,
"start": 0,
"filters": {
"locationId": "San Francisco, CA",
"geoUrn": "urn:li:example:123456",
"companyIds": [
"Acme Inc"
],
"jobType": [
"default"
],
"experienceLevel": [
"example_value"
],
"workplaceType": [
"default"
],
"datePosted": "2024-01-15",
"industry": [
"Technology"
],
"easyApply": false
}
}Responses
| Status | Description |
|---|---|
| 200 | Jobs retrieved successfully |
Search LinkedIn people (alias)
Alias endpoint for /search/people. Search for LinkedIn members/professionals with extensive filtering options. Ideal for recruiting, sales prospecting, and networking. Filter by name, job title, company, location, connection degree, and more.
Get job details
Retrieve detailed information about a specific job posting including full description, requirements, company information, and application details. Use the jobId from search results.
