Video Captioning

Generate captions for videos using AI

AI Generate Caption

post
Authorizations
Body
captionsobjectOptional

Optional custom captions

replacementsobject[]Optional

List of replacements

styleobjectOptional

Caption styling settings

videoobjectRequired

Video details including URL and language

Responses
200
Returns job ID and status
application/json
post
POST /caption/generate-caption HTTP/1.1
Host: api.zero2launch.com
X-API-Key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 57

{
  "captions": {},
  "replacements": [
    {}
  ],
  "style": {},
  "video": {}
}
200

Returns job ID and status

{
  "job_id": "text",
  "status": "text"
}

Check Caption Job Status

get
Authorizations
Path parameters
job_idstringRequired

Job ID from caption generation

Responses
200
Returns caption job status and result
application/json
get
GET /caption/status/{job_id} HTTP/1.1
Host: api.zero2launch.com
X-API-Key: YOUR_API_KEY
Accept: */*
200

Returns caption job status and result

{
  "result": {},
  "status": "text"
}