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

# List Videos

> Returns all videos stored in the organization’s library.



## OpenAPI

````yaml Get /v1/videos
openapi: 3.1.0
info:
  title: ManageXR API
  description: API documentation for ManageXR
  version: 1.0.0
servers:
  - url: https://managexrapi.com
    description: ManageXR API Server
security:
  - basicAuth: []
paths:
  /v1/videos:
    get:
      summary: List Videos
      description: Returns all videos stored in the organization’s library.
      parameters:
        - name: organizationId
          in: query
          required: false
          schema:
            type: string
          description: >
            Unique identifier of the organization. This parameter is only
            necessary when using multi-organization API keys. 


            Defaults to the organizationId associated with the API key.
      responses:
        '200':
          description: A list of videos
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/V1ContentVideo'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: number
                    example: 403
                  message:
                    type: string
                    example: Forbidden
                  error:
                    type: string
                    example: ManageXR Error
              example:
                statusCode: 403
                message: Forbidden
                error: ManageXR Error
components:
  schemas:
    V1ContentVideo:
      type: object
      title: Video
      description: >-
        Videos deployed on the configuration will include the attributes listed
        below
      required:
        - contentType
        - id
        - title
        - size
        - type
        - display
        - mapping
        - packing
        - iconUrl
        - createdAt
        - updatedAt
      properties:
        contentType:
          type: string
          enum:
            - video
        id:
          type: string
          description: Unique identifier of the video
        title:
          type: string
          description: Title of the video
        size:
          type: number
          description: Size of the video in bytes
        type:
          type: string
          enum:
            - _360
            - _180
            - _2D
          example: _360
          description: Type of video
        display:
          type: string
          enum:
            - MONO
            - STEREO
          example: MONO
          description: Video display type
        mapping:
          type: string
          enum:
            - NONE
            - EQUIRECTANGULAR
            - CUBEMAP
          example: EQUIRECTANGULAR
          description: Video mapping
        packing:
          type: string
          enum:
            - NONE
            - TOP_BOTTOM
            - LEFT_RIGHT
          example: TOP_BOTTOM
          description: Video packing (stereoscopic videos only)
        md5:
          type: string
          description: MD5 hash of the video file
        iconUrl:
          type: string
          format: uri
          description: URL of the video's icon
        createdAt:
          type: number
          description: Creation timestamp
          example: 1645615777448
        updatedAt:
          type: number
          description: Last update timestamp
          example: 1687352117203
        description:
          type: string
          description: Optional description of the video
      example:
        contentType: video
        id: gF0ODIEvXSwsjqtP0CgVo
        title: Discover San Francsico
        description: '[360 Mono Cubemap] 1 MB'
        size: 553657
        type: _360
        display: MONO
        mapping: CUBEMAP
        packing: NONE
        md5: 7ah69cMtXyaz5OfsCRtOjQ==
        iconUrl: https://firebasestorage.googleapis.com/v0/b/example.jpg
        createdAt: 1696978504660
        updatedAt: 1715651553616
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >
        API key based authentication where <encoded-value> is the Base64
        encoding of `API_KEY_ID`:`API_KEY_SECRET`

        - **Username**: The API Key ID.

        - **Password**: The API Key Secret.

````