Search Jobs
Search LinkedIn jobs with various filters
POST
/linkedin/search/jobsSearch Jobs
Search LinkedIn jobs with various filters
Authentication requiredLinkedIn Search
Code Examples
curl -X POST 'https://api.connectsafely.ai/linkedin/search/jobs' \ -H 'Authorization: Bearer <your_api_key>' \ -H 'Content-Type: application/json' \ -d '{"keywords":"software engineer","count":25,"filters":{"workplaceType":["2"],"datePosted":"past-week"}}'Parameters
No parameters.
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
accountId | string | No | LinkedIn account ID (uses default if not provided) |
keywords | string | No | Search keywords |
count | number | No | Number of results (1-100, default 25) |
start | number | No | Starting index for pagination |
filters | object | No |
Example
{
"keywords": "software engineer",
"count": 25,
"filters": {
"workplaceType": [
"2"
],
"datePosted": "past-week"
}
}Responses
| Status | Description |
|---|---|
| 200 | Successful response |
200 Example
{
"success": true,
"jobs": [
{
"jobId": "4209649973",
"title": "Software Engineer",
"companyName": "Tech Company",
"companyId": "12345",
"location": "San Francisco, CA (Remote)",
"isRemote": true,
"isHybrid": false,
"jobUrl": "https://www.linkedin.com/jobs/view/4209649973/",
"easyApply": true
}
],
"pagination": {
"count": 25,
"start": 0,
"total": 1500
},
"hasMore": true
}