Zelescope

POST https://api.turing.sh/video/zelescope

This model is not yet implemented

Parameters

  • prompt

    • Type: string
    • Required: true
  • duration

    • Type: number
    • Required: false
    • Default: 10

Response

Response not defined yet

Examples

Zelescope example
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
},
  })
})();