Import AceData Cloud's AI APIs into Coze / 扣子 as plugins, so your Coze bots and workflows can generate music, images and video — and later search the web — through a single Bearer token.
Coze imports standard OpenAPI 3.0 schemas, so every file here can be imported
directly with no code. We ship music (Suno), image (GPT Image / Nano Banana /
DALL·E / Seedream / Flux) and video (Sora / Kling / Veo / Seedance) — one
<service>.yaml per plugin, all synchronous.
| File | Tool (operationId) |
AceData API | What it does |
|---|---|---|---|
suno.yaml |
generateMusic |
POST /suno/audios |
Generate a full song from a prompt or custom lyrics |
image.yaml |
generateImage |
POST /openai/images/generations |
Generate images — GPT Image, Nano Banana or DALL·E (pick the model) |
seedream.yaml |
generateImage |
POST /seedream/images |
Generate images with ByteDance Seedream (Doubao) |
flux.yaml |
generateImage |
POST /flux/images |
Generate or edit images with Flux |
sora.yaml |
generateVideo |
POST /sora/videos |
Generate videos with OpenAI Sora |
kling.yaml |
generateVideo |
POST /kling/videos |
Generate videos with Kuaishou Kling |
veo.yaml |
generateVideo |
POST /veo/videos |
Generate videos with Google Veo |
seedance.yaml |
generateVideo |
POST /seedance/videos |
Generate videos with ByteDance Seedance |
- Get an API token. Create one at
https://platform.acedata.cloud/console/credentials — a per-service
api.acedata.cloudtoken. Keep it secret. - Create the plugin from the schema.
- Coze.com: Development → Plugins → Create plugin → Import, then upload the
.yaml(or paste its contents). - 扣子 (coze.cn):「资源库 → 插件 → 创建插件 → 导入」,上传或粘贴
.yaml。
- Coze.com: Development → Plugins → Create plugin → Import, then upload the
- Configure authorization. Choose Service auth with:
- Location: Header
- Parameter name:
Authorization - Service token / value:
Bearer <your api.acedata.cloud token>(include the literalBearerprefix).
- Test. Coze turns each
operationIdinto a callable tool. Run Test with a minimal payload, e.g.{ "prompt": "a lofi track for studying" }, and confirm the response contains anaudio_url. - Publish. Publish the plugin to the Coze plugin store (扣子插件商店) so other users can install it into their own bots and workflows.
- Synchronous by design. These endpoints return the result inline (the
200body already contains theaudio_url/ imageurl), which is what Coze tools expect. Do not addcallback_url/asyncto the schema — that switches the API into webhook mode and Coze would only receive a task id. - One token, all services. The base URL is
https://api.acedata.cloudand the same token style works across services, so additional plugins here reuse the same auth setup. - Real descriptions. These schemas hand-write human-readable descriptions on
purpose — the platform's internal OpenAPI specs use
$t(...)i18n placeholders that would otherwise show up literally as tool/parameter names inside Coze.
AceData Cloud already ships a batch of plugins live in the Coze store — Suno, Midjourney, DeepSeek, Grok, SERP — each with real usage (Suno alone: ~789 installs / 157 calls). This folder is the versioned source for their OpenAPI schemas so the team can re-import and update them consistently instead of hand-editing in the Coze UI.
The six highest-value services by market traction + platform fit — Seedream, Flux, Sora, Kling, Veo, Seedance (Coze is a ByteDance product, so ByteDance's own Seedream / Seedance fit especially well) — are now shipped in the Plugins table above.
To add more, same pattern, one file each — copy an existing .yaml, swap the path,
parameters and descriptions (take real params + endpoint from
PlatformBackend/openapi/<uuid>.json, never invent them), and add a row to the Plugins
table above. Next candidates: Hailuo, Luma, Wan (video), Fish (audio).