Endpoints
GET /api/v1/jobs
Fetch all open and active job listings.
https://careers.namigroups.in/api/v1/jobs
Auth:None / Optional
Rate Limit:100 req/min (Soft Limit)
Response Structure
{
"data": [
{
"id": "uuid-string",
"title": "Senior Product Designer",
"department": "Design",
"location": "Remote",
"work_mode": "Remote",
"job_type": "Full-time",
"employment_type": "Permanent",
"salary_min": "80000",
"salary_max": "120000",
"currency": "USD",
"pay_frequency": "Annual",
"description": "<h3>About the Role</h3>...",
"requirements": "<ul><li>3+ years experience...</li></ul>",
"benefits": ["Health Insurance", "Remote Work"],
"skills": ["Figma", "React", "UX Research"],
"min_experience": "Mid-Senior Level",
"min_education": "Bachelors",
"position_openings": 1,
"application_deadline": "2024-12-31",
"requires_relocation": false,
"visa_sponsorship": false,
"created_at": "2024-02-15T12:00:00Z",
"companies": {
"name": "TechFlow",
"logo_url": "...",
"website": "..."
},
"apply_url": "https://careers.namigroups.in/dashboard/jobs/uuid-string"
}
],
"meta": {
"count": 42,
"timestamp": "2024-02-15T12:00:00Z"
}
}Integration Tips
Authentication (Optional)
While the API is public, you can request an API Key from our team if you need higher rate limits or want usage tracking for your integration.
Pass it in the header:
Pass it in the header:
x-api-key: your_key_hereApply Redirects
Always use the
apply_url field provided in the response. Do not build your own apply forms. This ensures candidates are tracked correctly in our ATS and have necessary account creation flows.