> ## Documentation Index
> Fetch the complete documentation index at: https://docs.userintuition.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Interview



## OpenAPI

````yaml /api-reference/openapi.json get /api/public/v1/interviews/{interview_id}
openapi: 3.1.0
info:
  title: User Intuition Public API
  description: >-
    ## Public Integration API


    Programmatic access to User Intuition for external integrators: manage
    studies, participants, interviews, reports, and panels.


    ### Authentication


    All endpoints require a Bearer token — either an API key (prefixed `ui_sk_`,
    created in the dashboard) or a dashboard JWT:


    ```

    Authorization: Bearer <ui_sk_… or JWT>

    ```


    ### Base URLs


    - **Production:** `https://api.userintuition.ai`

    - **Staging:** `https://staging.userintuition.ai`


    ### Support


    For API support, contact support@userintuition.ai
  version: 1.0.0
  contact:
    name: User Intuition Support
    email: support@userintuition.ai
servers:
  - url: https://api.userintuition.ai
    description: Production
  - url: https://staging.userintuition.ai
    description: Staging
security:
  - BearerAuth: []
paths:
  /api/public/v1/interviews/{interview_id}:
    get:
      tags:
        - public-interviews
      summary: Get Interview
      operationId: getInterview
      parameters:
        - name: interview_id
          in: path
          required: true
          schema:
            type: string
            title: Interview Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicInterview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PublicInterview:
      properties:
        id:
          type: string
          title: Id
        study_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Study Id
          description: The study this interview belongs to
        participant:
          anyOf:
            - $ref: '#/components/schemas/PublicInterviewParticipant'
            - type: 'null'
          description: null for panel (anonymous) interviews
        status:
          anyOf:
            - type: string
            - type: 'null'
          title: Status
        quality:
          anyOf:
            - type: string
            - type: 'null'
          title: Quality
          description: 'Quality rating: Excellent, Good, Fair, or Poor'
        end_reason:
          anyOf:
            - type: string
            - type: 'null'
          title: End Reason
          description: Why the interview ended
        started_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Started At
          description: Date and time the interview took place
        duration_seconds:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration Seconds
          description: Interview length in seconds (ended_at - started_at)
        messages:
          anyOf:
            - items:
                additionalProperties: true
                type: object
              type: array
            - type: 'null'
          title: Messages
        audio_recording_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Audio Recording Url
        video_recording_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Video Recording Url
        screener_responses:
          anyOf:
            - items:
                $ref: '#/components/schemas/PublicScreenerResponse'
              type: array
            - type: 'null'
          title: Screener Responses
          description: The participant's screener answers for this interview.
      type: object
      required:
        - id
      title: PublicInterview
      description: Full interview shape returned by get-by-id (includes recordings etc.).
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PublicInterviewParticipant:
      properties:
        id:
          anyOf:
            - type: string
            - type: 'null'
          title: Id
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
      type: object
      title: PublicInterviewParticipant
    PublicScreenerResponse:
      properties:
        question:
          anyOf:
            - type: string
            - type: 'null'
          title: Question
          description: The screener question text
        type:
          anyOf:
            - type: string
            - type: 'null'
          title: Type
          description: single_select, multi_select, or text_input
        answer:
          anyOf:
            - type: string
            - type: 'null'
          title: Answer
          description: The participant's answer (option text(s) or free text)
      type: object
      title: PublicScreenerResponse
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Authenticate with an API key (prefixed `ui_sk_`) or a JWT token from the
        dashboard.

````