POST
https://api.turing.sh/video/zelescope
Warning
This model is not yet implemented
-
prompt
- Type: string
- Required: true
-
duration
- Type: number
- Required: false
- Default: 10
Error
Response not defined yet
import axios from "axios";
(async () => {
let response = await axios({
method: "post",
url: 'https://api.turing.sh/video/zelescope',
headers: {
"Content-Type": "application/json",
Authorization: "Bearer YOUR_API_KEY",
"x-captcha-token": "Captcha key"
},
data: {
"prompt": "string",
"duration": 10
},
})
})();import requests
import json
response = requests.post(
"https://api.turing.sh/video/zelescope",
headers={
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_KEY",
"x-captcha-token": "Captcha key"
},
data=json.dumps({
"prompt": "string",
"duration": 10
}),
)