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

# Get Vision



## OpenAPI

````yaml /openapi.json get /v1/projects/{project_id}/vision
openapi: 3.1.0
info:
  title: NanoClip Public API
  version: 0.1.0
  description: >-
    Upload video or audio and extract transcript, speaker, face, scene, and
    retake intelligence.
servers:
  - url: https://api.nanoclip.ai
security: []
paths:
  /v1/projects/{project_id}/vision:
    get:
      summary: Get Vision
      operationId: get_vision_v1_projects__project_id__vision_get
      parameters:
        - name: project_id
          in: path
          required: true
          schema:
            type: string
            title: Project Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VisionResultResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    VisionResultResponse:
      properties:
        project_id:
          type: string
          title: Project Id
        analysis:
          type: string
          const: vision
          title: Analysis
          default: vision
        status:
          $ref: '#/components/schemas/AnalysisResultStatus'
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
        agent_context:
          additionalProperties:
            type: string
          type: object
          title: Agent Context
        faces:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Faces
        face_tracks:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Face Tracks
        scenes:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Scenes
        asd:
          anyOf:
            - $ref: '#/components/schemas/VisionAsdStatus'
            - type: 'null'
      type: object
      required:
        - project_id
        - status
      title: VisionResultResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AnalysisResultStatus:
      type: string
      enum:
        - queued
        - processing
        - completed
        - failed
      title: AnalysisResultStatus
      description: Analysis lifecycle as reported by the result GET endpoints.
    VisionAsdStatus:
      properties:
        ran:
          type: boolean
          title: Ran
        reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Reason
        assigned:
          anyOf:
            - type: integer
            - type: 'null'
          title: Assigned
        carried:
          anyOf:
            - type: integer
            - type: 'null'
          title: Carried
      type: object
      required:
        - ran
      title: VisionAsdStatus
      description: >-
        Whether active-speaker detection ran for this job, and what it produced.


        Detections that were never scored omit `speak_conf` entirely, so this
        record

        is the only way to tell "never ran" from "ran and scored nothing".
        Active-

        speaker detection needs at least two simultaneously tracked faces, so

        single-speaker footage produces no scores by design.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````