Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.outai.top/llms.txt

Use this file to discover all available pages before exploring further.

Overview

The Seedance 2.0 API provides endpoints to:
  • Create asynchronous video generation tasks
  • Check task status and retrieve results
  • Check your current API credit balance

Authentication

Include your API key in the Authorization header for every request:
Authorization: Bearer <api_key>

Base URL

https://api.outai.top/api

Response Format

All responses follow the same envelope:
{
  "code": 200,
  "trace_id": "xxxxxx",
  "message": null,
  "data": {}
}

Available Endpoints

  • POST /v1/video/seedance-2 — Create a video generation task
  • GET /v1/tasks?task_id=<task_id> — Retrieve task status and result
  • GET /v1/credits — Retrieve current API credit balance

Notes

  • Video generation is asynchronous
  • A successful create request returns a task_id
  • Use task_id to poll task status and retrieve the final result
  • Business-level failures may use the same code with different message values, so clients should inspect both code and message