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

# List video analyses



## OpenAPI

````yaml /openapi.yaml get /v1/videos/{id}/analyses
openapi: 3.1.0
info:
  title: Lymo Platform API
  version: 1.0.0
  description: >
    Public API for external integrations. Authenticated via Unkey API keys. All
    endpoints are org-scoped — the API key determines which organization's data
    is accessible.
servers:
  - url: https://platform.lymo.jp
    description: Production
  - url: http://127.0.0.1:54321/functions/v1/platform
    description: Local development (Supabase CLI)
security:
  - apiKeyAuth: []
tags:
  - name: system
    description: Health and status endpoints
  - name: videos
    description: Video data and analysis
  - name: deals
    description: Deal management and scoring
  - name: members
    description: Organization members
  - name: analyses
    description: Video analysis resources (async)
  - name: scorings
    description: Deal scoring resources (async)
  - name: webhooks
    description: Webhook endpoint management
  - name: keys
    description: API key self-service
  - name: search
    description: Cross-entity search
paths:
  /v1/videos/{id}/analyses:
    get:
      tags:
        - analyses
      summary: List video analyses
      operationId: listVideoAnalyses
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Video ID
        - name: cursor
          in: query
          required: false
          schema:
            type: string
          description: Pagination cursor from a previous response
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 25
          description: Maximum number of items to return (1-100)
      responses:
        '200':
          description: Paginated list of analyses
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                  - meta
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      required:
                        - id
                        - status
                        - video_id
                        - created_at
                      properties:
                        id:
                          type: string
                        status:
                          type: string
                          enum:
                            - processing
                            - completed
                            - failed
                        video_id:
                          type: string
                        result:
                          type: object
                          nullable: true
                          description: Analysis result payload. Null while processing.
                          properties:
                            summary:
                              type: string
                              nullable: true
                            checklist_evaluation_id:
                              type: string
                              nullable: true
                            sales_event_count:
                              type: integer
                              nullable: true
                        error:
                          type: object
                          nullable: true
                          description: Error details if status is failed.
                          properties:
                            code:
                              type: string
                            message:
                              type: string
                        started_at:
                          type: string
                          format: date-time
                          nullable: true
                        finished_at:
                          type: string
                          format: date-time
                          nullable: true
                        created_at:
                          type: string
                          format: date-time
                        updated_at:
                          type: string
                          format: date-time
                  meta:
                    allOf:
                      - type: object
                        required:
                          - request_id
                        properties:
                          request_id:
                            type: string
                            description: Unique identifier for this request
                            example: req_abc123
                      - type: object
                        required:
                          - has_more
                        properties:
                          next_cursor:
                            type: string
                            nullable: true
                            description: >-
                              Cursor to fetch the next page. Null when no more
                              results.
                          has_more:
                            type: boolean
                            description: Whether more results exist beyond this page
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: Unkey API key (prefix lymo_)

````