Imagine API Reference
  1. Video Generation
Imagine API Reference
  • Imagine API References
  • Image Generation
    • Text to Image API
      POST
    • Text to PNG API
      POST
  • Image Editing
    • Background Remover API
      POST
    • Image Upscale API
      POST
    • Generative Fill API
      POST
    • AI Resize API
      POST
    • Retouch API
      POST
  • E-Commerce
    • AI Backgrounds API
      POST
  • Video Generation
    • Text to Video API
      POST
    • Image to Video API
      POST
    • Status by ID
      GET
    • (Deprecated) Status by ID
      GET
    • Delete by ID
      DELETE
    • (Deprecated) Delete by ID
      DELETE
  1. Video Generation

(Deprecated) Status by ID

GET
https://api.vyro.ai/v2/video/status/{id}
video
Our Video Status API allows users to retrieve the current processing status of a video using its unique ID. It provides real-time updates on the video’s progress, including statuses such as pending, processing, completed, or failed.

Request

Path Params
id
string 
required
Header Params
Authorization
string 
optional
Example:
Bearer {{API Token}}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.vyro.ai/v2/video/status/' \
--header 'Authorization: Bearer vk-ad08a8e86d1a84404e5837be47d39ab44474f982671c0a'

Responses

🟢200Success
application/json
Body
Root API response object containing status and video information.
status
string 
required
Status of the request, e.g. 'success' or 'error'.
video
object 
required
Detailed information about the video.
uuid
string 
required
Unique identifier for the video.
created_at
string 
required
Timestamp indicating when the video was created.
status
string 
required
Processing status of the video
url
object 
required
Object containing URLs related to the video.
Example
{
  "status": "string",
  "video": {
    "uuid": "string",
    "created_at": "string",
    "status": "string",
    "url": {
      "generation": "string",
      "thumbnail": "string"
    }
  }
}
🟠400Bad Request
🔴500Internal Server Error
🔴503Service Unavailable
Previous
Status by ID
Next
Delete by ID