Skip to main content
GET
/
assessments
/
{assessmentId}
/
questions
List assessment questions
curl --request GET \
  --url http://localhost:3000/api/v1/assessments/{assessmentId}/questions \
  --header 'x-api-key: <api-key>'
{
"questions": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"order": 123,
"inputType": "text",
"script": "<string>",
"audioUrl": "<string>",
"videoUrl": "<string>",
"responseType": "text",
"points": 123,
"timeLimit": 123,
"sourceLanguage": "<string>",
"targetLanguage": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}

Authorizations

x-api-key
string
header
required

API key for authentication. Format: ak_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Path Parameters

assessmentId
string<uuid>
required

Unique identifier of the assessment

Response

Successful response

questions
object[]