AI matcher

The Hirize AI matcher can parse resumes of varying formats (PDF, JPG, PNG), and has OCR capabilities. You can also define a webhook in the control panel and make async requests to the API. Please create an endpoint for the product in the endpoints section at https://app.hirize.hr.

Authorization API Key


This folder is using an authorization helper from collection Public Api

POST AI Matcher Request Open request

{{main_url}}/api/public/ai-matcher

The payload is the same as in the Resume Parser. Seniority should be one of the following: "Intern, Junior, Mid, Senior, Lead, C Level / VP".

Authorization API Key


Key          api_key
Value        {{ai_matcher_api_key}}

Body raw (json)

{
  "job_title" : "Senior Backend Developer",
  "seniority" : "Senior",
  "skills" : ["FORTRAN", "COBOL", "ALGOL", "BASIC"], 
  "payload": {{payload}},
  "file_name": "william-bill-gates.pdf"
}

POST AI Matcher Request With Occupation & Job Description Open request

{{main_url}}/api/public/ai-matcher-with-occupation

The payload is the same as in the Resume Parser. Seniority should be one of the following: "Intern, Junior, Mid, Senior, Lead, C Level / VP".

Authorization API Key


Key          api_key
Value        {{ai_matcher_api_key}}

Body raw (json)

{
  "job_desc" : "Develop and maintain server-side applications using Node.js. Collaborate with front-end developers to integrate user-facing elements. Write clean, efficient, and well-documented code. Troubleshoot and debug applications. Work with databases such as MongoDB or MySQL. Participate in code reviews and team meetings. Requirements: Proven experience as a Node.js Developer. Strong knowledge of JavaScript and Node.js. Familiarity with RESTful APIs and web services. Experience with databases like MongoDB, MySQL, or PostgreSQL. Understanding of front-end technologies such as HTML, CSS, and JavaScript. Excellent problem-solving skills. Good communication and teamwork skills.",
  "occupation" : "Data Scientist"
}

GET AI Matcher Detail Open request

{{main_url}}/api/public/ai-matcher/1374

Make a request with the id returned through the POST request.

Authorization API Key


Key          api_key
Value        {{ai_matcher_api_key}}

Last updated