Speech Evaluation

Speech Evaluation API

  • Use this api to evaluate the speech of student

Path: /api/v1/exercises/speech/evaluate/

Method: POST

Request Data

{
    “student_answer”: <audio>, // audio recorded by student
    “correct_text”: <string>, // correct audio text which you got when created the speech exercises
}

Response Data

{
    "id": <ID>,
    "speech_evaluation_status_url": "/api/v1/exercises/speech/evaluate/<evaluation_id>/status/",
    "status": “pending”,
    "error": <None>,
    "data": <None>
}

Example

Request Data

Response Data

Check the status of the speech evaluation

Path: /api/v1/exercises/speech/evaluate/<evaluation_id>/status/

Method: GET

Request Data

Response Data

Example

Request Data

Response Data

Last updated