Fraud
Loan
Candidate
Get score audio - fraud
This is an API to get the fraud score using the ID of the audio file.
Parameters
Responses
Errors
Authorization
Authorization: Bearer token
HTTP: bearerAuth
HTTP Authorization Scheme: bearer
Base URL
The base URL for all API requests is:

https://api.bizbaz.tech
    
Endpoints
Get score of audio file.

POST /get-score{id}
    
Parameters
Key Parameters 
Description
id:
The ID of the audio file (String).
Responses
Returns a JSON object with the following properties:
Responses
Description
fraud:
fraud score.
conscientiousness:
conscientiousness score.
integrity:
integrity score.
Example

Request:
GET /get-score{id}

{
    "id": "39875g3bh3hid5",
}


Response:
{
    "scoreType": "audio",
    "audioServiceType": "fraud",
    "scores": { 
"audioSubScores": { 
"fraud": 5, 
"conscientiousness": 1, 
"integrity": 5 
}, 
"score": 610 
    } 
}

    
Errors
Error Codes
Description
400 Bad Request:
The request was malformed or missing required parameters.
401 Unauthorized:
The API key provided was invalid or missing.
404 Not Found:
The requested resource was not found
500 Internal Server Error:
An unexpected error occurred on the server.
Get score audio - loanDefault
This is an API to get the loanDefault score of the audio file.
Parameters
Responses
Errors
Authorization
Authorization: Bearer token
HTTP: bearerAuth
HTTP Authorization Scheme: bearer
Base URL
The base URL for all API requests is:

https://api.bizbaz.tech
    
Endpoints
Get score of audio file.

POST /get-score{id}
    
Parameters
Key Parameters 
Data Type
Description
id:
String
The ID of the audio file.
Responses
Returns a JSON object with the following properties:
Returns a JSON object with the following properties:
Responses
Description
score:
general score.
Sub Scores
Responses
Description
burnout:
burnout score.
cooperation:
cooperation score.
emotionalStability:
emotional stability score.
EnergyLevel:
energy level score.
financialRisk :
financial risk score.
open :
open score.
priceValueConsumer:
price value consumer score.
Example
Request:

GET /get-score{id}
    

{
"id": "string"
}
    
Response:

{
"scoreType": "audio",
"audioServiceType": "loanDefault",
"scores": {
"audioSubScores": {
"Burnout": 10,
"Cooperation": 3,
"EmotionalStability": 1,
"EnergyLevel": 3,
"FinancialRisk": 2,
"Open": 10,
"PriceValueConsumer": 1
},
"score": 608
}
}
    
Errors
Error Codes
Description
400 Bad Request:
The request was malformed or missing required parameters.
401 Unauthorized:
The API key provided was invalid or missing.
404 Not Found:
The requested resource was not found
500 Internal Server Error:
An unexpected error occurred on the server.
Get score audio - candidateSuccess
This is an API to get the candidateSuccess score of the audio file.
Parameters
Responses
Errors
Authorization
Authorization: Bearer token
HTTP: bearerAuth
HTTP Authorization Scheme: bearer
Base URL
The base URL for all API requests is:

https://api.bizbaz.tech
    
Endpoints
Get score of audio file.

POST /get-score{id}
    
Parameters
Key Parameters 
Data Type
Description
id:
String
The ID of the audio file.
Responses
Returns a JSON object with the following properties:
Returns a JSON object with the following properties:
Responses
Description
score:
general score.
Sub Scores
Responses
Description
Temperament:
Temperament score.
Ambition:
Ambition score.
Integrity:
Integrity score.
Systematic:
Systematic score.
Communication:
Communication score.
Innovation:
Innovation score.
Cooperation:
Cooperation score.
Adjustment:
Adjustment score.
Creativity:
Creativity score.
SalesFit:
Sales Fit score.
ManagementFit:
Management Fit score.
CustomerServiceFit:
Customer Service Fit score.
RDFit
Role Candidate Fit score.
Learning:
Learning score.
Extraversion:
Extraversion score.
Agreeableness:
Agreeableness score.
Conscientiousness:
Conscientiousness score.
EmotionalStability:
Emotional Stability score.
Openness:
Openness score.
Example
Request:

GET /get-score{id}
    

{
"id": "string"
}
    
Response:

{
"scoreType": "audio",
"audioServiceType": "candidateSuccess",
"scores": {
"audioSubScores": {
"Temperament": 1,
"Ambition": 2,
"Integrity": 3,
"Systematic": 4,
"Communication": 3,
"Innovation": 2,
"Cooperation": 3,
"Adjustment": 5,
"Creativity": 4,
"SalesFit": 3,
"ManagementFit": 4,
"CustomerServiceFit": 3,
"RDFit": 4,
"Learning": 3,
"Extraversion": 5,
"Agreeableness": 4,
"Conscientiousness": 2,
"EmotionalStability": 4,
"Openness": 3
},
"score": 608
}
}
    
Errors
Error Codes
Description
400 Bad Request:
The request was malformed or missing required parameters.
401 Unauthorized:
The API key provided was invalid or missing.
404 Not Found:
The requested resource was not found
500 Internal Server Error:
An unexpected error occurred on the server.