API reference · Douyin
douyin/creator/mission-task-list
Integrate this model through SandBase's unified API, with production-ready schemas and examples.
Production endpoint
Send your first request
OpenAI-compatible endpoint with unified authentication and usage tracking.
POST
https://api.sandbase.ai/v1/runModel ID
douyin/creator/mission-task-list01
Input Schema
12 parameters · 0 required · 12 optional
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | Optional | 每页数量/Items per page · Min: 1 · Max: 100 · Default: 24 |
cursor | integer | Optional | 游标/Cursor (分页) · Min: 0 · Default: 0 |
keyword | union | Optional | 关键词/Keyword (任务名称或ID) |
pay_type | union | Optional | 付费类型/Pay type (1=视频等级, 2=自定义, 3=按转化付费, 4=按有效播放量, 5=按销售量, 9=按核销量, 14=按付费分佣) |
tab_scene | integer | Optional | 场景类型/Scene type (1=可投稿, 2=可报名, 3=好物测评) · Default: 1 |
industry_lv1 | integer | Optional | 一级行业/Primary industry (-1=全部) · Default: -1 |
industry_lv2 | integer | Optional | 二级行业/Secondary industry (-1=全部) · Default: -1 |
mission_type | integer | Optional | 任务类型/Mission type · Default: 1 |
platform_channel | union | Optional | 平台渠道/Platform channel (1=抖音视频, 2=抖音直播, 3=抖音图文) |
publish_time_start | union | Optional | 发布开始时间/Publish start time (时间戳) |
quick_selector_scene | union | Optional | 快速选择场景/Quick selector (1=高收益, 4=保底收入, 5=合作过) |
greater_than_cost_progress | union | Optional | 成本进度/Cost progress (20=高于20%, 50=高于50%, 80=高于80%) |
02
Output Schema
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier for the generation task |
status | string | Task status: pending, running, completed, failed, timeout |
model | string | Model used for the generation |
outputs | array | Array of output items |
outputs[].url | string | URL of the generated artifact |
outputs[].content_type | string | MIME type (e.g. image/png, video/mp4) |
error | object | null | Error details if failed, null on success |
error.type | string | Machine-readable error type code |
error.message | string | Human-readable error description |
03
Code Examples
Ready-to-run snippets
curl -X POST https://api.sandbase.ai/v1/run \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "douyin/creator/mission-task-list",
"limit": 24,
"cursor": 0,
"tab_scene": 1,
"industry_lv1": -1,
"industry_lv2": -1,
"mission_type": 1,
"prompt": "a beautiful sunset over mountains"
}'
