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

# List interviews for a study

> Returns a paginated list of completed interviews for the specified study.



## OpenAPI

````yaml https://app.conveo.ai/openapi.yml get /studies/{studyId}/interviews
openapi: 3.1.1
info:
  title: Conveo API
  version: '1.0'
servers:
  - url: https://app.conveo.ai/public-api/v1
security:
  - bearerAuth: []
paths:
  /studies/{studyId}/interviews:
    get:
      summary: List interviews for a study
      description: >-
        Returns a paginated list of completed interviews for the specified
        study.
      parameters:
        - name: studyId
          in: path
          required: true
          schema:
            type: string
        - name: page
          in: query
          required: false
          schema:
            type: integer
            default: 1
            minimum: 1
        - name: pageSize
          in: query
          required: false
          schema:
            type: integer
            default: 20
            minimum: 1
            maximum: 100
      responses:
        '200':
          description: A paginated list of interviews for the study
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/PaginatedResponse'
                  - type: object
                    properties:
                      items:
                        type: array
                        items:
                          $ref: '#/components/schemas/Interview'
        '401':
          description: Unauthorized
        '404':
          description: Study not found
components:
  schemas:
    PaginatedResponse:
      type: object
      properties:
        items:
          type: array
          items:
            type: object
        pagination:
          type: object
          properties:
            total:
              type: integer
              description: Total number of items
              example: 42
            page:
              type: integer
              description: Current page number
              example: 2
            pageSize:
              type: integer
              description: Number of items per page
              example: 20
    Interview:
      type: object
      properties:
        id:
          type: string
          example: cm393cvz80bdpmcedfzacog26
        participant:
          type: object
          properties:
            id:
              type: string
              example: cm14zq5t10egyfkyrfy34ihlc
            name:
              type: string
              example: John S
        facets:
          type: array
          description: List of facets associated with the interview
          items:
            $ref: '#/components/schemas/Facet'
          example:
            - label: Age
              values:
                - '35'
            - label: Gender
              values:
                - Female
            - label: Country
              values:
                - United States
            - label: Car Ownership
              values:
                - Electric Vehicle
                - Previous ICE Owner
            - label: Opinion on Jaguar's Strategy
              values:
                - Positive impression
                - Interested in future models
        videoDownloadURL:
          type:
            - string
            - 'null'
          format: uri
          description: >-
            Temporary URL to download the interview video. Only present when a
            video is available. The URL expires after 15 minutes.
          example: https://...
        transcriptAsWebVTT:
          type:
            - string
            - 'null'
          description: >-
            The interview transcript in WebVTT format. Only present when a
            transcript is available.
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
    Facet:
      type: object
      description: A facet representing a labeled set of values
      properties:
        label:
          type: string
          description: The label or name of the facet
        values:
          type: array
          description: List of values associated with this facet
          items:
            type: string
      required:
        - label
        - values
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````