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

# Get episode videos



## OpenAPI

````yaml /openapi.json get /api/v1/catalog/datasets/{dataset_id}/episodes/{episode_index}/videos
openapi: 3.1.0
info:
  title: NMotion Data Platform API (developer)
  version: 0.1.0
  description: >-
    The stable HTTP surface of the NMotion data platform for CLI, SDK, and
    automation clients.
servers:
  - url: https://platform.neural-motion.org
    description: Production
  - url: https://dev.platform.neural-motion.org
    description: Dev channel
security: []
tags:
  - name: Platform
    description: Version and service metadata.
  - name: Catalog
    description: Browse the public dataset catalog.
  - name: Users and tokens
    description: Identity and personal access tokens.
  - name: Projects
    description: Navigate organizations and projects.
  - name: Project datasets
    description: Datasets, manifests, and episodes inside a project.
  - name: Imports
    description: Bring data into a project.
  - name: Exports
    description: Derived dataset versions and export jobs.
paths:
  /api/v1/catalog/datasets/{dataset_id}/episodes/{episode_index}/videos:
    get:
      tags:
        - Catalog
      summary: Get episode videos
      operationId: >-
        get_episode_videos_catalog_v1_api_v1_catalog_datasets__dataset_id__episodes__episode_index__videos_get
      parameters:
        - name: dataset_id
          in: path
          required: true
          schema:
            type: string
            title: Dataset Id
        - name: episode_index
          in: path
          required: true
          schema:
            type: integer
            title: Episode Index
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EpisodeVideosResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security: []
components:
  schemas:
    EpisodeVideosResponse:
      properties:
        item:
          $ref: '#/components/schemas/EpisodeVideosManifest'
      type: object
      required:
        - item
      title: EpisodeVideosResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    EpisodeVideosManifest:
      properties:
        dataset_id:
          type: string
          title: Dataset Id
        episode_index:
          type: integer
          title: Episode Index
        primary_stream_key:
          anyOf:
            - type: string
            - type: 'null'
          title: Primary Stream Key
        video_streams:
          items:
            $ref: '#/components/schemas/VideoStreamManifest'
          type: array
          title: Video Streams
      type: object
      required:
        - dataset_id
        - episode_index
      title: EpisodeVideosManifest
      description: |-
        Per-episode, per-camera trimmed video streams (issue #347).

        ``video_streams`` mirror the episode player's streams but point at small
        per-episode slices on a 0-based timeline, so the player can swap them in
        for the full-chunk URLs. An empty list means the slice cache is disabled
        or unavailable and the caller should keep the original streams.
    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
    VideoStreamManifest:
      properties:
        key:
          type: string
          title: Key
        label:
          type: string
          title: Label
        url:
          type: string
          title: Url
        from_timestamp:
          anyOf:
            - type: number
            - type: 'null'
          title: From Timestamp
        to_timestamp:
          anyOf:
            - type: number
            - type: 'null'
          title: To Timestamp
        width:
          anyOf:
            - type: integer
            - type: 'null'
          title: Width
        height:
          anyOf:
            - type: integer
            - type: 'null'
          title: Height
        fps:
          anyOf:
            - type: number
            - type: 'null'
          title: Fps
        codec:
          anyOf:
            - type: string
            - type: 'null'
          title: Codec
      type: object
      required:
        - key
        - label
        - url
      title: VideoStreamManifest

````