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

# Get Media Status

> Retrieve the current status and URLs of a video generation request



## OpenAPI

````yaml GET /status/{transactionId}
openapi: 3.0.1
info:
  title: Charp.ai API
  description: >-
    API ecosystem for vendor management, authentication, campaign management,
    and tools for enhancing campaign execution including realtime media
    generation
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://whilter-api-host
security:
  - bearerAuth: []
tags:
  - name: Authentication
    description: Operations related to API authentication
  - name: Realtime Media
    description: Operations for generating personalized videos in real-time
  - name: Webhooks
    description: Webhook endpoints for receiving notifications
  - name: Virtual Try-On
    description: Operations related to virtual try-on functionality
  - name: Tasks
    description: Operations related to task management
paths:
  /status/{transactionId}:
    get:
      tags:
        - Realtime Media
      summary: Check Video Status
      description: Retrieve the current status and URLs of a video generation request
      operationId: getVideoStatus
      parameters:
        - name: transactionId
          in: path
          required: true
          description: The Whilter request ID returned from video generation request
          schema:
            type: string
      responses:
        '200':
          description: Video status retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VideoStatusResponse'
      security:
        - apiKeyAuth: []
        - bearerAuth: []
components:
  schemas:
    VideoStatusResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - SUCCESS
            - FAILURE
            - PROCESSING
          description: Current status of the video generation
        message:
          type: string
          nullable: true
          description: Status message or error details
        video-url:
          type: string
          format: uri
          nullable: true
          description: URL of the generated video (null if not ready)
        image-url:
          type: string
          format: uri
          nullable: true
          description: URL of the generated thumbnail image
      required:
        - status
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````