Skip to main content
GET
/
assessments
/
{assessmentId}
/
questions
List assessment questions
curl --request GET \
  --url https://alfaone.app/api/v1/assessments/{assessmentId}/questions \
  --header 'x-api-key: <api-key>'
{
  "questions": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "order": 123,
      "script": "<string>",
      "audioUrl": "<string>",
      "videoUrl": "<string>",
      "points": 123,
      "timeLimit": 123,
      "sourceLanguage": "<string>",
      "targetLanguage": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 87,
    "totalPages": 5
  }
}

Documentation Index

Fetch the complete documentation index at: https://v4-docs.alfaone.app/llms.txt

Use this file to discover all available pages before exploring further.

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

Query Parameters

page
integer
default:1

Page number (1-indexed)

Required range: x >= 1
limit
integer
default:20

Number of items per page (max 100)

Required range: 1 <= x <= 100
sort
enum<string>
default:order

Field to sort by

Available options:
order,
created_at,
points
order
enum<string>
default:asc

Sort direction

Available options:
asc,
desc

Response

Successful response

questions
object[]
pagination
object