Get clean, comprehensive Person Search inputs from a single job title or skill.
Pinpoint statistically relevant rather than most common or obvious skills or job titles.
Directly pass results into Person Search API queries to build a list of highly relevant profiles.
The Job Title and Skills APIs are powered by our vast dataset that enables you to easily discover skills and/or job titles that are highly related.
Identify similar job titles or skills for open roles to find the most relevant candidates.
Enrich profiles to match users with job opportunities based on sets of skills or relevant job titles.
Interpret vague job descriptions and search queries to intelligently connect recruiters with the right candidates.
Our algorithm does the heavy lifting so you can plug enriched data into your workflow.
Input a job title and return the following from the job titles dataset, based on a proprietary algorithm:
View documentation
»Input a skill and return the following from the skill dataset, based on a proprietary algorithm:
View documentation
»1import requests, json
2
3# Set your API key
4API_KEY = "YOUR API KEY"
5
6# Set the Autocomplete API URL
7PDL_URL = "https://api.peopledatalabs.com/v5/autocomplete"
8
9# Create a parameters JSON object
10PARAMS = {
11 "api_key": API_KEY,
12 "field": "school",
13 "text": "stanf",
14 "size": 10,
15 "pretty": True
16}
17
18# Pass the parameters object to the Autocomplete API
19json_response = requests.get(PDL_URL, params=PARAMS).json()
20
21# Print the API response in JSON format
22print(json_response)
Our Job Title and Skill Enrichment APIs are built to take recruiting and hiring to the next level.
The APIs include normalization functionality to transform the input into its cleaned value from the People Data Labs database.
The cleaned value is mapped to a database with additional meta-information about that job title or skill.
Use the results to enhance search queries with highly relevant job and skill inputs.