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

# Get video status and playback details

> Returns the current status of an ingested video. While processing,
only basic fields are populated. Once `status` is `ready` and
`is_available` is `true`, the `playback` object contains Mux IDs
and HLS URL.

Requires the `videos:read` scope.




## OpenAPI

````yaml /openapi.yaml get /v1/videos/{id}
openapi: 3.1.0
info:
  title: Eden Developer API
  version: 1.0.0
  description: |
    The Eden Developer API lets brands, leagues, teams, and rights-holding
    organizations distribute video content programmatically on Eden — the
    athlete creator platform.

    This is an invite-only API. Email support@myeden.me to request access.
  contact:
    name: Eden Developer Relations
    email: support@myeden.me
servers:
  - url: https://api.myeden.me
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Videos
    description: Create, read, archive, republish, and delete videos.
paths:
  /v1/videos/{id}:
    parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
          example: vid_a7Kp9mNqR2vXyB4dH6jL8s
    get:
      tags:
        - Videos
      summary: Get video status and playback details
      description: |
        Returns the current status of an ingested video. While processing,
        only basic fields are populated. Once `status` is `ready` and
        `is_available` is `true`, the `playback` object contains Mux IDs
        and HLS URL.

        Requires the `videos:read` scope.
      operationId: getVideo
      responses:
        '200':
          description: Video details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    Video:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
          enum:
            - processing
            - ready
            - archived
            - deleted
        is_available:
          type: boolean
        title:
          type: string
        summary:
          type: string
          nullable: true
          description: |
            Partner-supplied summary if provided at ingest, otherwise null.
        tags:
          type: array
          items:
            type: string
        duration_seconds:
          type: number
          nullable: true
        thumbnail_url:
          type: string
          nullable: true
          description: |
            Partner-supplied thumbnail if provided at ingest, otherwise the
            Mux-generated auto-thumbnail. Null until processing completes.
        playback:
          nullable: true
          type: object
          properties:
            playback_id:
              type: string
            hls_url:
              type: string
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
            request_id:
              type: string
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: |
        Send your API key as a Bearer token:

            Authorization: Bearer eden_live_xxxxxxxxxxxxxxxxxxxxxxxx_yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy

````