{"code": 200,"message": "Parsing results","data": {"ents": [{"end": 11,"label": "Person","start": 0},{"end": 33,"label": "Job_title","start": 17}],"text": "Harry Potter is a Python Enginner"}}
{"code": 400,"message": "Bad request. Text cannot be null"}
{"code": 401,"message": "Unauthorized. Invalid secret key: xxxx for permission: write"}
As output , this API sends you back all parsed entities.
There are 17 labels :
FirstName
LastName
Date
Duration
Location
Company
JobTitle
Task
School
EduTitle
Course
Skill
Certification
Language
Interest
Phone
from hrflow import Hrflow​client = Hrflow(api_secret="Your API Key", api_user="Your API user email")​​response = client.document.parsing.post(text="Harry Potter is a Python Enginner")
import Hrflow from 'hrflow';const client = new Hrflow({api_secret: 'Your API Key',api_user: 'Your API user email'});​client.document.parsing.post("Harry Potter is a Python Enginner").then(response => {console.log(response);// ...});