GET
/
v1
/
video
/
status
curl --request GET \
  --url https://nano-gpt.com/api/v1/video/status \
  --header 'x-api-key: <api-key>'
{
  "status": "PENDING",
  "data": {
    "isCompleted": true,
    "isSuccess": true,
    "output": {
      "url": "<string>"
    }
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

runId
string
required

Run ID from the generation request

projectId
string
required

Project ID from the generation request

cost
string

Cost of the video generation

paymentSource
string

Payment source used

Response

200
application/json
Video generation status
status
enum<string>

Current status of the generation

Available options:
PENDING,
PROCESSING,
COMPLETED,
FAILED
data
object