Resume Parser REST API Integration

Resume Parsing API will act as a parsing service via Rest API call and return the desired output as JSON in readily structured version. RChilli resume parser extracts the resume information in 140+ data fields.

This features helps users on following:
  • Candidates can fill profile in less than 10 sec as the parser will automatically fill the data fields, refer RScript.
  • Recruiters can shortlist candidates quickly with the help of extracted data.
  • Users can do Bulk parsing, refer Bulk Upload Integration.
  • User can integrate the rest API with email inbox, refer Email Inbox Integration.

How to Integrate Rest API

Resume Parser rest API can be easily integrated using below parameters, for more details, refer Resume Parser Endpoints, Method and Parameters.
  1. Parsing by Resume Binary Data: When the resume is parsed using the Binary data format, the parameters must be given as follows:

    Parameters:-

    • File Data (String): Resume binary data in base64
    • File Name (String): Resume with name extension (e.g. resumeSample.docx)
    • User Key (String): Valid User Key as provided by RChilli
    • Version (String): 8.0.0
    • Sub User Id (String): As per contract
    See the below request in the JSON format:
    {
      "filedata": "{{base64data}}",
      "filename": "{{filename}}",
      "userkey": "{{userkey}}",
      "version": "8.0.0",
      "subuserid": "{{subuserid}}"
    }
  2. Parsing by Resume Public URL: When the resume is parsed using the Public URL, the parameters must be given as follows:

    Parameters:-

    • Resume URL (String) Resume public URL with the filename, e.g. http://www.resumeinfo.com/raj_php.docx
    • User Key (String) Valid user key as provided by RChilli.
    • Version (String) 8.0.0
    • Sub User Id (String) As per contract.
    See the below request in the JSON format:
    {
      "url": "{{publicurl}}",
      "userkey": "{{userkey}}",
      "version": "8.0.0",
      "subuserid": "{{subuserid}}"
    }