ToolAssay

Submits a text to video job

Submits a text to video job. Returns {id, status: "processing"} immediately; poll GET /video-api/status/{id} every few seconds until status is completed (output_url) or failed (error). The status record expires one hour after completion. Prompts over 3000 characters and flagged content are rejected with a 400. Billed per second at the chosen mode.

Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$1.00listed price per call
n/aprice it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://deepai.pay.zeroclick.io/video-api/text2video

CategoryImage and media
Provider hostdeepai.pay.zeroclick.io
Networkseip155:8453, zeroclick:card
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

We never call tools that send, buy, move money or file anything, not even without paying.

Example input (from the provider)

{
  "body": {
    "duration": 5,
    "mode": "hd",
    "prompt": "a golden retriever surfing a wave at sunset",
    "shape": "landscape"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "example": {
            "duration": 5,
            "mode": "hd",
            "prompt": "a golden retriever surfing a wave at sunset",
            "shape": "landscape"
          },
          "properties": {
            "duration": {
              "default": 5,
              "description": "Length of the generated video in seconds, 5 to 15. Billing is per second.",
              "example": 5,
              "maximum": 15,
              "minimum": 5,
              "type": "integer"
            },
            "mode": {
              "default": "hd",
              "description": "hd for standard videos (billed as hd_seconds), hollywood for 2K cinematic quality (billed as hollywood_seconds).",
              "enum": [
                "hd",
                "hollywood"
              ],
              "example": "hd",
              "type": "string"
            },
            "prompt": {
              "description": "What to generate, up to 3000 characters.",
              "example": "a golden retriever surfing a wave at sunset",
              "maxLength": 3000,
              "type": "string"
            },
            "shape": {
              "default": "auto",
              "description": "Output shape. auto uses landscape for text to video and matches the source image for image to video. Must be auto in hollywood mode for image to video.",
              "enum": [
                "square",
                "landscape",
                "standard",
                "vertical",
                "portrait",
                "auto"
              ],
              "example": "landscape",
              "type": "string"
            }
          },
          "required": [
            "prompt"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST",
            "PUT",
            "PATCH"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON