Get Score Audio
Response
Errors
Get Score Audio - Fraud
This is an API to get the fraud score using the ID of the audio file.
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

POST /get-score{id}
    
Get score of audio file.
Parameters
id: The ID of the audio file (String).
Response
Returns a JSON object with the following properties:
Response
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
This API uses the following error codes:
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.