Get Job Details
Retrieve detailed information about a specific job posting including full description, requirements, and company information.
Endpoint
GET
/api/v1/jobs/:idParameters
idRequiredstringUnique job identifier
Responses
200Successful response with job details
{
"data": {
"id": "64a1b2c3d4e5f6789012345",
"title": "Senior Frontend Developer",
"company": {
"name": "Tech Innovators Inc",
"brand": {
"id": "64a1b2c3d4e5f678901234a",
"name": "Tech Innovators",
"logo": "https://example.com/logo.png"
}
},
"location": "New York, NY",
"job_type": "Full-time",
"experience_level": "Senior",
"job_description": "We're looking for a Senior Frontend Developer to join our growing team. You'll be responsible for building modern web applications using React and TypeScript. The ideal candidate will have strong experience with modern JavaScript frameworks and a passion for creating excellent user experiences.",
"structured_description": [
{
"header": "Job Description",
"content": "We're looking for a Senior Frontend Developer to join our growing team. You'll be responsible for building modern web applications using React and TypeScript."
},
{
"header": "Responsibilities",
"content": "• Build and maintain responsive web applications\n• Collaborate with design and backend teams\n• Write clean, testable code\n• Mentor junior developers\n• Participate in code reviews"
},
{
"header": "Requirements",
"content": "• 5+ years of frontend development experience\n• Strong React and TypeScript skills\n• Experience with modern build tools and CI/CD\n• Excellent communication skills\n• Bachelor's degree in Computer Science or equivalent"
},
{
"header": "Benefits",
"content": "• Competitive salary and equity\n• Comprehensive health coverage\n• Remote-friendly culture\n• Professional development budget\n• Flexible work hours"
}
],
"application_url": "https://example.com/apply/senior-frontend-developer",
"highlights": [
"Work with cutting-edge technology",
"Remote-friendly culture",
"Competitive salary and benefits",
"Professional development opportunities"
],
"salary": {
"min": 120000,
"max": 180000,
"currency": "USD"
},
"posted_at": "2025-07-25",
"is_featured": true,
"skills": [
"React",
"TypeScript",
"JavaScript"
],
"industries": [
{
"id": "industry1",
"name": "Technology"
},
{
"id": "industry2",
"name": "Software Development"
}
],
"created_at": "2025-07-25T10:00:00Z",
"updated_at": "2025-07-25T10:00:00Z"
},
"meta": {
"api_version": "v1",
"timestamp": "2025-08-01T12:00:00Z"
}
}401Unauthorized - invalid or missing API key
404Job not found
{
"error": {
"code": "JOB_NOT_FOUND",
"message": "The requested job does not exist"
}
}Code Examples
curl -X GET https://essence-api.gradientgroup.com/api/v1/jobs/:id \
-H "Authorization: Bearer YOUR_API_KEY"API Configuration
Your API key is stored locally and used for testing.
