v1

latestOpenAPI 3.0.1MIT2026-07-2638658.5 KB
Video

Retrieve talking avatar video

Get video information and status by video ID

get/v2/avatar_video/{id}

Path parameters

idstring required
Example:video_123456

Video ID from video creation endpoint

Response

Success

codeinteger required

Business status code:

  • 0 - Success
  • 10104 - Record not found
  • 10105 - Invalid API key
  • 18020 - Insufficient credit
  • 18025 - No permission to call APIs
  • 40000 - Parameter error
  • 50000 - System error
msgstring required

Response message

Example response

{
  "msg": "Success",
  "data": {
    "video_id": "video_123456",
    "status": "completed",
    "video_url": "https://example.com/videos/video_123456.mp4",
    "cover_url": "https://example.com/covers/video_123456.jpg",
    "created_at": 1640995200
  }
}