Get a list of exams

GET /exams

Retrieves a list of all exams available in the system. The results are paginated.

Query parameters

  • limit integer

    Specifies the maximum number of exam records to return per page. (min: 1, max: 100, default: 10)

  • page integer

    Specifies the page number of the exam list to access. (min: 1, default: 1)

Responses

  • 200

    Successfully retrieved the list of exams.

  • 401

    Authorization failed. Ensure the X-Client-Key sent is valid and active.

  • 403

    Invalid or inactive client. The API key may be incorrect, expired, or your account does not have permission.

GET /exams
curl \
 --request GET 'https://app.indolat.com/api/v1/exams' \
 --header "X-Client-Key: $API_KEY"