Unlock SmartRecruiters job data for your platform. Access jobs from thousands of employers through our comprehensive API and Job Feeds, or integrate directly with SmartRecruiters's official API.
To retrieve jobs from the official SmartRecruiters API, you will need access to the API Marketplace. Access is possible for clients and official SmartRecruiters partners. If you’re interested in just partnering up with one client, your client can generate an API credential for you. For a solution that applies to all customers, you can reach out to the Partner Success Team for API access
As part of the Marketplace API, you can fetch jobs using the Job Board API. There is one option available:
GET job postings (/feed/publications)- Retrieves a collection of jobs.
There’s one parameter to filter the jobs further: ‘updatedAfter=’. You can use this parameter to apply a date filter. Filtering on date is useful as there’s a limit of 100 jobs per API call. There are no option to search or filter.
Curl
curl -i
-H "X-SmartToken: abc123"
-X GET
https://api.smartrecruiters.com/feed/publications
PowerShell
$token = "YOUR_API_TOKEN"
$headers = @{
"X-SmartToken" = $token
}
$response = Invoke-RestMethod -Uri ‘https://api.smartrecruiters.com/feed/publications’ -Headers $headers