Unlock Paylocity job data for your platform. Access jobs from thousands of employers through our comprehensive API and Job Feeds, or integrate directly with Paylocity's official API.
Paylocity does not have a public API to retrieve jobs. Clients are able to access job postings via the Paylocity API Recruiting Job Feed. Accessing this API requires a guid API Key. To retrieve jobs, you can use the following endpoint
GET /recruiting/v2/api/feed/jobs/
The API will return a JSON or XML response containing all relevant job posting fields. No further filtering is possible with this API.
curl -X GET "https://api.paylocity.com/recruiting/v2/api/feed/jobs/" -H "Authorization: Bearer YOUR_API_KEY"
PowerShell
$headers = @{
'Authorization' = 'Bearer YOUR_API_KEY'
}
$response = Invoke-RestMethod -Uri ‘https://api.paylocity.com/recruiting/v2/api/feed/jobs/’ -Headers $headers