1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
| {
"status": true,
"data": {
"jobs": [
{
"job_id": "abc123def456",
"title": "Senior Software Engineer",
"company": "TechCorp Inc.",
"location": "San Francisco, CA",
"source": "LinkedIn",
"posted_date": "2 days ago",
"salary": "$150,000 - $200,000 a year",
"employment_type": "Full-time",
"is_new": true,
"is_remote": false,
"benefits": [
"Health insurance",
"401(k) matching",
"Flexible schedule"
],
"qualifications": [
"5+ years of experience",
"Bachelor's degree in Computer Science",
"Proficiency in Python and JavaScript"
],
"company_logo_url": "https://example.com/logo.png",
"description": "We are looking for a Senior Software Engineer to join our growing team...",
"apply_links": [
{
"source": "LinkedIn",
"url": "https://linkedin.com/jobs/view/123456",
"domain": "linkedin.com",
"is_primary": true
},
{
"source": "Company Website",
"url": "https://techcorp.com/careers/senior-swe",
"domain": "techcorp.com",
"is_primary": false
}
],
"highlights": {
"qualifications": [
"5+ years of software development experience",
"Strong proficiency in Python and JavaScript"
],
"benefits": [
"Competitive salary and equity package",
"Comprehensive health, dental, and vision insurance"
],
"responsibilities": [
"Design and implement scalable backend services",
"Mentor junior engineers and conduct code reviews"
]
}
}
],
"page": 0,
"has_next_page": true
}
}
|