Structure job offer data
βWhyβ
Job offer data is often unstructured, making it difficult to standardize.
HrFlow.ai parsing APIs make it easy for you to structure candidate data. Our API returns a structured JSON object named Job
.
π οΈ How to implement π οΈ
You can parse job offers from raw text.
Prerequisites
- Create an account
- Activate your account: you need to activate our Text Parsing API
- API Authentification
- Create a board
You need to use our Text Parsing API.
- Create a board and retrieve its key.
- Use the Text Parsing API and set parameter
output_object
tojob
to retrieve aJob
object. - Store the parsed
Job
object in the appropriate source using our Job Indexing API.
Known bug (will be fixed soon)
By default, our Text Parsing API returns Job with
key=""
.
As the Job Indexing API doesn't override key if non-null, you have to manually setkey=None
(Python) orkey=null
(Javascript) in the Job object before using the Job Indexing API.
π¨ Customization π¨
- You can enrich the
Job
object with tags and metadatas to add more information that is not available from the resume file. Tags are designed to be short and searchable, unlike metadata. More information about tags and metadata here. Both tags and metadatas are objects that must havename
(non-null) and they may have avalue
(nullable) - If each job already has a unique reference in your system (outside HrFlow.ai), you can set
reference
field on theJob
object.
Updated 7 days ago