SkyHive’s Parsers API securely takes information from uploaded user resumes or LinkedIn profiles and extracts skills, experience, education, and certifications for profile population. With this API, you can:
Automate user profile completion using this method:
The Parse Resume method takes the text of a resume/CV/LinkedIn profile as a string and extracts information on skills, experience, education, etc. for automatic profile population.
To ensure success, refer users to this SkyHive article, which describes the best-suited resume formatting for these methods. Also refer users to this LinkedIn article, which details how to save a LinkedIn profile as a PDF.
The following use case covers a possible application of the Parsers API:
Parse skills from text.
OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
{- "text": "string",
- "title": "string",
- "language": "en",
- "userParams": {
- "debug": true,
- "lang": "string",
- "maxSkills": 0,
- "thresholds": {
- "similarity": {
- "technical": 0,
- "functional": 0,
- "soft": 0
}, - "relevance": 0,
- "importance": 0
}, - "weights": {
- "similarity": 0,
- "relevance": 0,
- "frequency": 0
}, - "components": {
- "sequenceClassification": true
}, - "contextualEmbeddings": true,
- "minSentences": 0
}
}
OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
curl -i -X POST \ 'https://api-staging.skyhive.ai/parsers/v2/skills?title=string' \ -H 'Accept-Language: string' \ -H 'Authorization: YOUR_API_KEY_HERE' \ -H 'Content-Type: multipart/form-data' \ -H 'X-Enterprise-Id: string' \ -F document=string
OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
curl -i -X POST \ https://api-staging.skyhive.ai/parsers/resume \ -H 'Accept-Language: string' \ -H 'Authorization: YOUR_API_KEY_HERE' \ -H 'Content-Type: multipart/form-data' \ -H 'X-Enterprise-Id: string' \ -H 'X-Sh-Localization: string' \ -H 'X-Skill-Exclusion: false' \ -F document=string