GET
/
sessions
/
{id}
curl --request GET \
  --url https://api.techinterviewer.ai/sessions/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "<string>",
  "unique_session_id": "<string>",
  "created_at": "<any>",
  "candidate_metadata": "<any>",
  "client_type": "<string>",
  "messages": [
    {
      "message": {},
      "createdAt": 123
    }
  ],
  "session_specific_questions": [
    {}
  ],
  "recording_url": "<string>",
  "structured_outputs": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

Response

200
application/json

Successful Response

The response is of type object.