Unlock Phenom People job data for your platform. Access jobs from thousands of employers through our comprehensive API and Job Feeds, or integrate directly with Phenom People's official API.
Phenom People does not have a public API to retrieve jobs. Clients are able to access job postings via the Phenom People Developer API. Accessing this API requires an OAuth 2.0 access token, which can be requested via api-management@phenom.com. To retrieve jobs, you can use the following endpoint
GET /jobs-api/v1/jobs
The API will return a JSON containing all relevant job posting fields. Filtering and searching on certain fields is possible. These include locale, category, and siteType. The API does not support searching on job titles or descriptions.
Curl
curl -X GET https://api.phenom.com/jobs-api/v1/jobs
‘
-H 'Content-type: application/json'
-H 'Accept: application/json'
-H 'Authorization: string
PowerShell
$headers = @{
'Content-type' = 'application/json'
'Accept' = 'application/json'
'Authorization' = 'string'
}
$response = Invoke-RestMethod -Uri ‘https://api.phenom.com/jobs-api/v1/jobs’ -Headers $headers