GET
/
interviews
/
{interview_id}
cURL
curl --request GET \
  --url https://app.talvin.ai/api/v1/interviews/{interview_id} \
  --header 'X-TALVIN-API-KEY: <api-key>' \
  --header 'X-TALVIN-ORGANIZATION-ID: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "question_count": 123,
  "time_duration": "<string>",
  "questions": [
    {
      "id": "<string>",
      "question": "<string>",
      "follow_up_count": 123
    }
  ],
  "description": "<string>"
}

Authorizations

X-TALVIN-API-KEY
string
header
required
X-TALVIN-ORGANIZATION-ID
string
header
required

Path Parameters

interview_id
string
required

Unique identifier of the interview to retrieve

Response

200
application/json

Interview details

The response is of type object.