Docs
video
Infinite Zoom

Iinfinite Zoom

The Iinfinite Zoom API provides a simple yet powerful interface for infinite zooming.

Endpoint

POST /video/v1/infinite-zoom

Body

  • prompt (string, required): The text input to be converted into image.
  • numberOfIteration (number, optional) number of iterations

    numberOfIteration default value 2

Example

Request

POST /video/v1/infinite-zoom
Content-Type: application/json
x-access-key: YOUR_ACCESS_KEY
{
    "prompt": "<Input text>",
   "numberOfIteration": "<Input text>",
}

Response

Success
HTTP/1.1 200 OK
{
    "data": <string url>,
    "success": true,
    "message": "<process success message>"
}
Error
HTTP/1.1 400 Bad Request
Content-Type: application/json
{
    "success": false,
    "message": "<An error message containing the details>"
}