Skip to main content
GET
/
interview-configs
Read Interview Configs
curl --request GET \
  --url https://api.techinterviewer.ai/interview-configs \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "id": "<string>",
    "questions": [
      {
        "question": "<string>",
        "follow_ups": 123,
        "id": "<string>"
      }
    ],
    "createdAt": "<unknown>",
    "updatedAt": "<unknown>",
    "userId": "<string>",
    "title": "<string>",
    "length": 123,
    "language": "<string>",
    "jobTitle": "<string>",
    "scorecard": [
      {
        "signal": "<string>",
        "scale": 123,
        "weight": 123,
        "PointCriteria": {}
      }
    ],
    "prompt": "<string>",
    "structuredOutputs": [
      {
        "key": "<string>",
        "data_type": "<string>",
        "extraction_instructions": "<string>"
      }
    ],
    "teamId": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful Response

id
string
required
questions
Question · object[]
required
createdAt
any
required
updatedAt
any
required
userId
string
required
title
string | null
length
integer | null
language
string | null
jobTitle
string | null
scorecard
ScorecardItem · object[] | null
prompt
string | null
structuredOutputs
StructuredOutput · object[] | null
teamId
string | null