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

# List Deep Research Insights

> List deep research insights



## OpenAPI

````yaml get /observability/v1/deep-research-insights/
openapi: 3.1.0
info:
  title: Cekura API
  version: v1
  description: >-
    Complete API documentation for the Cekura platform. This API provides
    endpoints for testing, observing, and evaluating AI voice agents — including
    managing agents, running evaluators, defining metrics, and analyzing call
    quality.
servers:
  - url: https://api.cekura.ai
security: []
paths:
  /observability/v1/deep-research-insights/:
    get:
      tags:
        - observability
      description: List deep research insights
      operationId: deep-research-insights-list
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DeepResearchInsight'
          description: ''
      security:
        - api_key: []
components:
  schemas:
    DeepResearchInsight:
      type: object
      description: |-
        Project-level Deep Research audit row exposed to the Insights tab.

        `failure_modes` is filtered against the project's dismissed mode
        titles — a thumbs-down on a mode hides it from every subsequent
        render of every insight in the project (project-scoped, not
        insight-scoped).
      properties:
        id:
          type: integer
          readOnly: true
        project:
          type: integer
          readOnly: true
        window_start:
          type: string
          format: date-time
          readOnly: true
        window_end:
          type: string
          format: date-time
          readOnly: true
        num_calls_analyzed:
          type: integer
          readOnly: true
        status:
          enum:
            - pending
            - running
            - succeeded
            - failed
            - skipped_not_enough_data
          type: string
          description: |-
            * `pending` - Pending
            * `running` - Running
            * `succeeded` - Succeeded
            * `failed` - Failed
            * `skipped_not_enough_data` - Skipped Not Enough Data
          x-spec-enum-id: 128862fca689ae44
          readOnly: true
        failure_modes:
          type: string
          readOnly: true
        error_message:
          type: string
          readOnly: true
        duration_seconds:
          type:
            - number
            - 'null'
          format: double
          readOnly: true
        created_at:
          type: string
          format: date-time
          readOnly: true
        updated_at:
          type: string
          format: date-time
          readOnly: true
  securitySchemes:
    api_key:
      type: apiKey
      name: X-CEKURA-API-KEY
      in: header
      description: >-
        API Key Authentication. It should be included in the header of each
        request.

````