Integrate Jobba.io with your application using our REST API
To use the Jobba.io API, you'll need an API key. Contact us to request access to our API.
Authorization: Bearer YOUR_API_KEY
Retrieve a list of job postings
curl -H "Authorization: Bearer YOUR_API_KEY" https://jobba.io/api/jobs/list
Get details for a specific job
curl -H "Authorization: Bearer YOUR_API_KEY" https://jobba.io/api/jobs/123
Create a new job posting (requires API key)
curl -X POST -H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"title":"Software Engineer","company":"Example Corp","description":"..."}' \
https://jobba.io/api/external/jobs
API requests are limited to 100 requests per minute per API key.
For API support or to request an API key, please contact us.