In the admin
Configure providers & integrations
Manage API providers and connections from the admin panel.

What the API does
Eight capabilities, one REST API
Everything you need to integrate your job board with external systems.
RESTful architecture
Modern, scalable REST endpoints for smooth communication with external apps and services.
Job posting via API
Programmatically add, update, or delete listings from external systems or ATS platforms.
Import jobs API
Retrieve job data with parsed fields — logo, company, skills, experience, education — into your database.
User management
Create, update, or deactivate employer and job seeker accounts via API.
Search jobs or resumes
Fetch listings or candidate profiles with filters like location, category, experience, and keywords.
Application submission
Let external apps or mobile platforms submit job applications directly through the API.
Mobile app integration
Connect Android/iOS apps for listings, login, resume uploads, and applications.
Documentation included
Complete developer docs with request examples, response formats, and error handling.
For developers
Illustrative endpoints
Representative REST routes — see the included documentation for the exact paths, parameters, and authentication.
| Method | Endpoint | Purpose |
|---|---|---|
| GET | /api/jobs |
Search and list jobs with filters. |
| POST | /api/jobs |
Create a new job listing. |
| DEL | /api/jobs/{id} |
Delete a job listing. |
| GET | /api/resumes |
Search candidate resumes. |
| POST | /api/applications |
Submit a job application. |
| POST | /api/users |
Create an employer or job seeker. |
curl -X POST "https://your-jobboard.com/api/jobs" \ -H "Authorization: Bearer $API_KEY" \ -H "Content-Type: application/json" \ -d '{ "title": "Senior PHP Developer", "company": "Acme", "location": "Remote", "category": "IT" }'
Illustrative example. Use the exact endpoints, fields, and authentication from the included API documentation.
What you can build
Common API integrations
| Integration | What it enables |
|---|---|
| ATS / HR system | Push jobs from your internal system straight to the board, no double entry. |
| Job aggregators | Import and backfill jobs with parsed fields to keep the board full. |
| Mobile app | Power an Android/iOS app with listings, login, resume upload, and apply. |
| Partner sites | Syndicate listings or accept applications from external websites. |
| Automation | Schedule scripts to sync jobs, users, and applications on a cron. |
Answers
Frequently asked questions
What kind of API does the job board software provide?
Can I post and manage jobs through the API?
Does the API support importing jobs?
Can I manage users through the API?
Can external apps submit applications and search?
Does the API support mobile apps?
Is API documentation included?
Are the API features included in the price?
Keep exploring
Resources & related pages
Integrate your job board with anything
Post, import, search, and apply through a secure REST API, with full docs. See it in the live demo, or read the API import guide to get started.