1. Seedance
TikHub-AI-Proxy
  • Overview (PLEASE READ)
  • Streaming API
  • OpenAI
    • OpenAI response
      POST
    • OpenAI embeddings
      POST
    • OpenAI audio transcription
      POST
    • OpenAI chat completion
      POST
  • Claude
    • Claude chat completion
      POST
    • Claude message
      POST
  • DeepSeek
    • DeepSeek chat completion
      POST
  • Sora
    • Sora video generation
      POST
    • Get Sora video status
      GET
    • Download Sora video content
      GET
    • Remix Sora video
      POST
    • List Sora videos
      GET
    • Delete Sora video
      DELETE
  • Gemini
    • Gemini content
      POST
  • Seedance
    • Seedance video generation
      POST
    • Retrieve Seedance task
      GET
  • Kling
    • Kling text-to-video
      POST
    • Retrieve Kling text-to-video task
      GET
    • Kling image-to-video
      POST
    • Retrieve Kling image-to-video task
      GET
  • Veo
    • Veo video generation
    • Fetch Veo video generation status
  • Schemas
    • ChatCompletionRequest
    • ChatMessage
    • Tool
    • ToolCall
    • ChatCompletionResponse
    • ChatCompletionChoice
    • ContentFilterResults
    • UsageInfo
    • EmbeddingRequest
    • EmbeddingResponse
    • TranscriptionRequest
    • TranscriptionResponse
    • ClaudeMessageRequest
    • ClaudeMessageResponse
    • VideoCreateRequest
    • VideoResponse
    • VideoRemixRequest
    • GeminiGenerateContentRequest
    • VideoListResponse
    • GeminiContent
    • VideoDeleteResponse
    • GeminiGenerationConfig
    • ResponseRequest
    • GeminiGenerateContentResponse
    • ResponseObject
    • SeedanceTaskRequest
    • SeedanceTaskCreateResponse
    • SeedanceTaskResponse
    • KlingText2VideoRequest
    • KlingImage2VideoRequest
    • KlingTaskResponse
    • KlingTaskDetailResponse
    • KlingTaskListResponse
    • VeoGenerateRequest
    • VeoOperationResponse
    • VeoFetchOperationRequest
    • VeoFetchOperationResponse
  1. Seedance

Seedance video generation

POST
https://ai.tikhub.io/seedance/v3/contents/generations/tasks
Seedance
Creates a video generation task using ByteDance Seedance models. Supports text-to-video and image-to-video generation with configurable resolution, aspect ratio, duration, and audio.

How To Use#

Specify the model name and provide content (text prompt, optionally with an image) in your request payload.

Supported Models#

doubao-seedance-1-5-pro-251215: Seedance 1.5 Pro - supports audio generation, draft mode, adaptive ratio
doubao-seedance-1-0-pro-250528: Seedance 1.0 Pro - default 1080p resolution
doubao-seedance-1-0-lite-t2v-250428: Seedance 1.0 Lite T2V - default 720p resolution

Content Formats#

Text only: Generate a video based on the text prompt
Text + Image: Generate a video based on the text prompt and reference image

Task Workflow#

Video generation is asynchronous. After creating a task, use the retrieve endpoint to poll for status until succeeded.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Body Params application/jsonRequired

Examples
{
    "model": "doubao-seedance-1-5-pro-251215",
    "content": [
        {
            "type": "text",
            "text": "A girl walking through a sunlit meadow, wind gently blowing her hair, cinematic lighting"
        }
    ],
    "ratio": "16:9",
    "duration": 5,
    "watermark": false
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST 'https://ai.tikhub.io/seedance/v3/contents/generations/tasks' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "model": "doubao-seedance-1-5-pro-251215",
    "content": [
        {
            "type": "text",
            "text": "A girl walking through a sunlit meadow, wind gently blowing her hair, cinematic lighting"
        }
    ],
    "ratio": "16:9",
    "duration": 5,
    "watermark": false
}'

Responses

🟢200OK
application/json
Task created successfully
Body

Example
{
    "id": "task_n1GONEtW9YSqLFWmSFHtbUb7VAGZhXx8",
    "task_id": "task_n1GONEtW9YSqLFWmSFHtbUb7VAGZhXx8",
    "object": "video",
    "model": "doubao-seedance-1-5-pro-251215",
    "status": "",
    "progress": 0,
    "created_at": 1772095377
}
🟠400Bad Request
🟠401Unauthorized
🟠404Not Found
🔴500Internal Server Error
Modified at 2026-03-02 20:33:07
Previous
Gemini content
Next
Retrieve Seedance task
Built with