Generate videos with DeeVid API in 3 steps

Create an API key and start building in minutes.

Step 1
Create API Key

Create an API key to start generating videos with DeeVid.

Your keys
0 total
Created TimeKeyActions
Loading...
Step 2
Generate Your First Video

Send a simple API request to create a video task.

Replace YOUR_API_KEY with the API key generated in Step 1.

Request
curl -X POST "https://api.deevid.ai/v1/open-api/text-video/task/submit" \
     -H "Authorization: Bearer YOUR_API_KEY" \
     -H "Content-Type: application/json" \
     -d '{
       "model": "Master V4.0",
       "prompt": "A beautiful sunset over the ocean",
       "size": "SIXTEEN_BY_NINE",
       "resolution": "480p",
       "duration": 5
     }'
Response
{
  "success": true,
  "data": {
    "taskId": 10002,
    "status": "INIT"
  }
}
Step 3
Check Task Status

Use the task ID to check the status and retrieve the generated video.

Replace YOUR_API_KEY with the API key generated in Step 1.

Request
curl "https://api.deevid.ai/v1/open-api/task/status?taskId=10002" \
     -H "Authorization: Bearer YOUR_API_KEY"
Response
{
  "success": true,
  "data": {
    "taskId": 10002,
    "status": "SUCCESS",
    "resultVideoUrl": "https://cdn.deevid.ai/videos/xxx.mp4",
    "coverImageUrl": "https://cdn.deevid.ai/images/xxx.jpg",
    "completedAt": "2026-04-16T12:00:00Z"
  }
}
Explore more capabilities

Generate images, music, speech, and more with DeeVid.

View Docs