Documentation de l'API
Intégrez notre puissante IA de recrutement dans vos systèmes existants grâce à nos API faciles à utiliser.
API d'analyse de CV
Extraire des données structurées des CV des candidats à l'aide de l'IA
POST https://api.903-053-408-7463.fiona.botzbrain.com/aits/partnership/api-program/cv-parsing
Request Body:
{
"file": "FILE OBJECT"
}
AI CV Detector API
Identifier si un CV a été généré par l'IA ou rédigé par un par un humain.
POST https://api.903-053-408-7463.fiona.botzbrain.com/aits/partnership/api-program/cv-ai-detector
Request Body:
{
"file": "FILE OBJECT"
}
API de recherche d'emploi
Faites correspondre un CV à un emploi et obtenez le pourcentage de correspondance.
POST https://api.903-053-408-7463.fiona.botzbrain.com/aits/partnership/api-program/job-match
Request Body:
{
"file": "FILE OBJECT",
"job_data": "Job content in concatenated form with spaces",
"instructions_prompt": "Matching instructions"
}
API combinée de recherche d'emploi et de détecteur d'IA
Obtenez le pourcentage de correspondance des emplois et les résultats de la détection de l'IA en un seul appel.
POST https://api.903-053-408-7463.fiona.botzbrain.com/aits/partnership/api-program/job-match/ai-detector
Request Body:
{
"file": "FILE OBJECT",
"job_data": "Job content in concatenated form with spaces",
"instructions_prompt": "Matching instructions"
}
Intégration des appels téléphoniques
Lancer des appels sortants entre les recruteurs et les et les candidats, et générer une transcription de la conversation au un fichier audio et un résumé des principaux points abordés. points clés discutés.
Socket.IO Connection:
const socket = io("https://api.903-053-408-7463.fiona.botzbrain.com", {
query: {
"api-key": "[your-api-key]",
source: "fiona-phone-call-socket-io",
clientCallbackUrl: "Your callback URL",
_sid: "Unique identifier"
}
});
// Initiate call:
socket.emit("hr-start-phone-call", {
phoneNumber: "Candidate's phone number",
from: "Twilio-verified number",
proxy_phone_number: "Recruiter's phone number"
});
Rencontre entre Fiona AI et l'API
Créer une réunion qui sera dirigée par une IA (Fiona AI)
POST https://api.903-053-408-7463.fiona.botzbrain.com/aits/partnership/api-program/ai-meeting/create
Request Body:
{
"meeting_title": "The meeting title",
"meeting_description": "The meeting description",
"date_from": "The meeting start date. Ex. 2025-09-17",
"time_from": "The meeting start time. Ex. 10:25",
"date_to": "The meeting end date. Ex. 2025-09-17",
"time_to": "The meeting end time. Ex. 10:30",
"fiona_host_questions": [
"A list of questions that Fiona uses to conduct the interview",
"Ex. What is your name?",
"Ex. What excited you to apply for this job",
"Ex. Talk a bit about your past AI projects",
"etc..."
],
"candidate_email_addresses": [
"candidate1@gmail.com",
"candidate2@hotmail.com"
],
"clientCallbackUrl": "The API that Fiona will call to send the interview analysis, summary, question responses, and all relevant information about the interview once the data is ready",
"fiona_job_id": "The ID of the job for which Fiona will conduct the interview. This job must already be created on Fiona’s side before using the ID",
"fiona_profile_id": "The profile ID of the candidate for whom Fiona will conduct the interview. This profile must already be created on Fiona’s side before using the ID"
}
Fiona AI meeting embeded Iframe
Utilisez ce script directement dans votre application ou votre site web pour intégrer l'interview de Fiona AI dans un iframe
POST https://api.903-053-408-7463.fiona.botzbrain.com/aits/partnership/api-program/ai-meeting/create
<!-- Where to display the Fiona AI meeting -->
<div id="fiona-ai-meeting"></div>
<!-- Integration script -->
<script
src="https://api.903-053-408-7463.fiona.botzbrain.com/widgets/fiona-ai-meeting.js"
data-org="[your-organization-id]"
data-meeting-id="[meeting-id]"
data-locale="en-CA"
data-api-key="[your-api-key]"
data-lang="en"
style="width: 100%; height: 600px; border: none"
async
></script>

Propulsé par