Interview

Represents a single interview to which an applicant was invited.

URI
/api/v10/interviews/ID

GET Get an interview

Retrieve information about a specific interview.

Syntax
GET /api/v10/interviews/1
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/interviews/1"

Response headers

HeaderValueDescription
Content-Typeapplication/jsonThe media type of the resource
Content-Length1234The size of the response body in bytes

Response codes

Response codeDescription
200 OKThe interview data was successfully returned
404 Not FoundThe interview was not found

Example response

Response
{
  "id": 1,
  "status": "evaluated",
  "scenario": {
    "id": 1,
    "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"
        }
      }
  }
}

See Also