Interviews

Represents a list of interviews for an application.

URI
/api/v10/applications/ID/interviews/

GET List interviews

List all interviews to which an applicant was invited.

Syntax
GET /api/v10/applications/ID/interviews/
Host: apply.example.edu
Authorization: DREAM apikey="..."

Example request

Request
curl
curl \
  -X GET \
  -H "Authorization: DREAM apikey=\"YOUR-API-KEY\"" \
  "https://apply.example.edu/api/v10/applications/ID/interviews/"

Response headers

HeaderValueDescription
Content-Typeapplication/jsonThe media type of the resource
Content-Length1234The size of the response body in bytes
X-Count3The number of interviews to which the applicant was invited

Response codes

Response codeDescription
200 OKThe list of interviews was successfully returned

Example response

Response
{
  "1": {
    "id": 1,
    "status": "evaluated",
    "scenario": {
      "id": 9,
      "title": "Interview for Humanities department"
    },
    "invited": "2026-05-22T07:43:02+00:00",
    "started": "2026-05-22T08:35:05+00:00",
    "completed": "2026-05-22T08:35:26+00:00",
    "blocked": null,
    "evaluated": "2026-05-22T09:38:50+00:00",
    "details": [
      {
        "viewed": "2026-05-22T08:35:05+00:00",
        "completed": "2026-05-22T08:35:12+00:00",
        "attempts": 1
      },
      {
        "viewed": "2026-05-22T08:35:13+00:00",
        "completed": "2026-05-22T08:35:19+00:00",
        "attempts": 1
      },
      {
        "viewed": "2026-05-22T08:35:20+00:00",
        "completed": "2026-05-22T08:35:26+00:00",
        "attempts": 1
      }
    ],
    "responses": {
      "1": {
        "id": 1,
        "mime": "video/webm",
        "size": 56999,
        "duration": null,
        "uploaded": "2026-05-22T08:35:12+00:00",
        "transcoded": "2026-05-22T08:35:13+00:00",
        "question": "Please describe your greatest academic achievement.",
        "download": {
          "original": "/api/v10/interviews/1/responses/1/download",
          "webm": "/api/v10/interviews/1/responses/1/download/webm",
          "mp4": "/api/v10/interviews/1/responses/1/download/mp4"
        }
      },
      "2": {
        "id": 2,
        "mime": "video/webm",
        "size": 60346,
        "duration": null,
        "uploaded": "2026-05-22T08:35:19+00:00",
        "transcoded": "2026-05-22T08:35:21+00:00",
        "question": "Please describe your plans for the next 5 years.",
        "download": {
          "original": "/api/v10/interviews/1/responses/2/download",
          "webm": "/api/v10/interviews/1/responses/2/download/webm",
          "mp4": "/api/v10/interviews/1/responses/2/download/mp4"
        }
      },
      "3": {
        "id": 3,
        "mime": "video/webm",
        "size": 50998,
        "duration": null,
        "uploaded": "2026-05-22T08:35:26+00:00",
        "transcoded": "2026-05-22T08:35:27+00:00",
        "question": "Please talk about a hobby that you enjoy during your free time.",
        "download": {
          "original": "/api/v10/interviews/1/responses/3/download",
          "webm": "/api/v10/interviews/1/responses/3/download/webm",
          "mp4": "/api/v10/interviews/1/responses/3/download/mp4"
        }
      }
    }
  },
  "2": {
    "id": 2,
    "status": "timeout",
    "scenario": {
      "id": 10,
      "title": "Interview for Law School"
    },
    "invited": "2026-05-22T09:45:25+00:00",
    "started": "2026-05-22T09:45:57+00:00",
    "completed": null,
    "blocked": null,
    "evaluated": null,
    "details": [
      {
        "viewed": "2026-05-22T09:45:57+00:00",
        "completed": null,
        "attempts": 1
      }
    ],
    "responses": []
  }
}

See Also