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

# Get videos by IDs

> Retrieves video data for a comma-separated list of video IDs



## OpenAPI

````yaml /api-reference/oda-media-service-1.0.0.yml get /media/video/{ids}
openapi: 3.0.1
info:
  title: oda-media-service
  version: 1.0.0
servers: []
security: []
tags:
  - name: Available Media
    description: Search and retrieve available media from external providers
  - name: Video
    description: Video management operations
  - name: Playlist
    description: Playlist management operations
paths:
  /media/video/{ids}:
    get:
      tags:
        - Video
      summary: Get videos by IDs
      description: Retrieves video data for a comma-separated list of video IDs
      operationId: get_1
      parameters:
        - name: ids
          in: path
          description: Comma-separated video IDs
          required: true
          schema:
            type: string
      responses:
        '200':
          description: List of videos retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VideoData'
components:
  schemas:
    VideoData:
      required:
        - system
      type: object
      properties:
        id:
          type: string
          description: Unique video identifier
        originId:
          type: string
          description: Original video ID from provider
        provider:
          type: string
          description: Video provider (e.g., youtube)
        url:
          type: string
          description: Video URL
        title:
          type: string
          description: Video title
        thumbnail:
          type: string
          description: Video thumbnail URL
        status:
          type: string
          description: Video status
        owner:
          type: string
          description: Owner of the video
          nullable: true
        recipientId:
          type: string
          description: Recipient ID associated with this video
          nullable: true
        readyTimestamp:
          type: string
          description: Timestamp when video is ready
          format: date-time
          nullable: true
        paymentId:
          type: string
          description: Payment ID associated with this video
          nullable: true
        system:
          type: string
      description: Video data entity

````