# AiToEarn Open Platform > AiToEarn 开放平台文档 ## 使用 ### 使用 - [简介](https://docs.aitoearn.ai/zh/use/introduction.md): 开放平台接入入口 - [发布流程](https://docs.aitoearn.ai/zh/use/publish-flow/index.md) - [线下打卡开放接口](https://docs.aitoearn.ai/zh/use/offline-checkin/index.md): 接入抖音和小红书线下打卡能力,让匿名用户扫码后在平台 App 内完成发布。 - [通过插件发布](https://docs.aitoearn.ai/zh/use/plugin-publish/index.md): 使用 AiToEarn 浏览器插件发布小红书、微信视频号和抖音内容。 - [资源上传](https://docs.aitoearn.ai/zh/use/asset-upload/index.md) - [真人素材](https://docs.aitoearn.ai/zh/use/real-person-assets/index.md): 完成真人活体认证,创建真人素材,并在 Seedance 视频生成中通过 asset:// 引用。 - [获取 API Key](https://docs.aitoearn.ai/zh/use/api-key/index.md): 创建开放平台接口调用凭证 - [视频生成](https://docs.aitoearn.ai/zh/use/video-generation/index.md) - [图像生成](https://docs.aitoearn.ai/zh/use/image-generation/index.md) - [大语言模型](https://docs.aitoearn.ai/zh/use/large-language-model/index.md) - [Codex 接入教程](https://docs.aitoearn.ai/zh/use/codex/index.md): 通过 cc-switch 将 AiToEarn 对话接口接入 Codex - [Claude Code CLI 设置](https://docs.aitoearn.ai/zh/use/claude-code/index.md): 配置 Claude Code CLI 使用 AiToEarn Anthropic 兼容接口 - [Claude Desktop 设置](https://docs.aitoearn.ai/zh/use/claude-desktop/index.md): 配置 Claude Desktop 使用 AiToEarn Anthropic 兼容接口 ## API 文档 ### 概览 - [API 文档](https://docs.aitoearn.ai/zh/api/index.md): AiToEarn 开放平台 API 文档 ### AI 服务/视频生成 - [视频生成模型](https://docs.aitoearn.ai/api-reference/get-api-ai-models-video-generation.md): 接口说明:获取当前可用的视频生成模型目录,以及每个模型支持的模式、分辨率、画面比例、时长、参考媒体限制、默认参数和价格。模型与参数范围可能随服务更新,调用视频生成接口时请以本接口的实时返回值为准。 - [生成视频](https://docs.aitoearn.ai/api-reference/post-api-ai-video-generations.md): 接口说明:提交视频生成任务,可传入参考图片、视频、音频。任务异步执行,返回 taskId 用于轮询结果。 - [视频任务列表](https://docs.aitoearn.ai/api-reference/get-api-ai-video-generations.md): 接口说明:分页获取当前用户的视频生成任务列表。 - [视频任务状态](https://docs.aitoearn.ai/api-reference/get-api-ai-video-generations-task-id.md): 接口说明:根据 taskId 查询视频生成任务的执行状态与结果。 - [火山格式创建视频生成任务](https://docs.aitoearn.ai/api-reference/post-api-ai-v3-contents-generations-tasks.md): 接口说明:火山方舟视频生成兼容接口,适用于已经接入火山视频生成 API、希望迁移到 AiToEarn 但不想大改请求结构的客户。参考火山官方文档:[创建视频生成任务](https://www.volcengine.com/docs/82379/1520757?lang=zh)。 - [火山格式查询视频任务](https://docs.aitoearn.ai/api-reference/get-api-ai-v3-contents-generations-tasks-task-id.md): 接口说明:查询火山格式视频生成任务状态,返回结构保持火山任务查询格式。参考火山官方文档:[查询视频生成任务](https://www.volcengine.com/docs/82379/1521309?lang=zh)。 ### AI 服务/真人素材 - [创建普通素材组](https://docs.aitoearn.ai/api-reference/post-api-ai-volcengine-assets-groups.md): 创建普通素材组,返回的 `avatarType` 固定为 `Virtual`。真人素材组必须通过“完成真人认证”接口创建。 - [素材组列表](https://docs.aitoearn.ai/api-reference/get-api-ai-volcengine-assets-groups.md): 分页查询当前 API Key 所属账号的素材组。查询真人素材组时传入 `avatarType=RealPerson`。 - [素材组详情](https://docs.aitoearn.ai/api-reference/get-api-ai-volcengine-assets-groups-group-id.md): 获取当前 API Key 所属账号的素材组详情。 - [更新素材组](https://docs.aitoearn.ai/api-reference/patch-api-ai-volcengine-assets-groups-group-id.md): 更新素材组名称或描述。至少传入一个字段。 - [删除素材组](https://docs.aitoearn.ai/api-reference/delete-api-ai-volcengine-assets-groups-group-id.md): 删除素材组及其在 AiToEarn 中登记的素材记录。 - [创建素材](https://docs.aitoearn.ai/api-reference/post-api-ai-volcengine-assets-items.md): 把公网可访问的图片、视频或音频登记到素材组。创建后状态通常为 `Processing`,请通过“素材详情”接口刷新状态。 - [素材列表](https://docs.aitoearn.ai/api-reference/get-api-ai-volcengine-assets-items.md): 分页查询当前 API Key 所属账号的素材记录。素材最新处理状态以“素材详情”接口为准。 - [素材详情](https://docs.aitoearn.ai/api-reference/get-api-ai-volcengine-assets-items-asset-id.md): 获取素材详情并刷新上游处理状态。只有 `status=Active` 的素材可以通过 `asset://{assetId}` 用于视频生成。 - [更新素材](https://docs.aitoearn.ai/api-reference/patch-api-ai-volcengine-assets-items-asset-id.md): 更新素材名称。 - [删除素材](https://docs.aitoearn.ai/api-reference/delete-api-ai-volcengine-assets-items-asset-id.md): 删除素材及其在 AiToEarn 中的登记记录。 - [创建真人认证会话](https://docs.aitoearn.ai/api-reference/post-api-ai-volcengine-assets-visual-validation-sessions.md): 创建真人活体认证会话。认证完成后,AiToEarn 会把浏览器重定向到 `callbackUrl`,并附带认证结果参数。创建和完成同一会话必须使用同一个 API Key。 - [完成真人认证](https://docs.aitoearn.ai/api-reference/post-api-ai-volcengine-assets-visual-validation-sessions-byted-token-complete.md): 查询真人认证结果,并在认证成功后创建 `avatarType=RealPerson` 的素材组。会话在 AiToEarn 中保留 30 分钟;若返回业务码 `12329`,表示认证结果尚未就绪,可以稍后重试。 ### AI 服务/图像生成 - [图像生成模型](https://docs.aitoearn.ai/api-reference/get-api-ai-models-image-generation.md): 接口说明:获取当前可用的图像生成模型目录,以及每个模型支持的尺寸、质量、风格、积分范围和价格。模型与参数范围可能随服务更新,调用图像生成接口时请以本接口的实时返回值为准。 - [图像编辑模型](https://docs.aitoearn.ai/api-reference/get-api-ai-models-image-edit.md): 接口说明:获取当前可用的图像编辑模型目录,以及每个模型支持的尺寸、最大输入图片数量、积分范围和价格。模型与参数范围可能随服务更新,调用图像编辑接口时请以本接口的实时返回值为准。 - [生成图像](https://docs.aitoearn.ai/api-reference/post-api-ai-image-generate.md): 接口说明:同步生成图像,根据所选模型与提示词返回生成结果。 - [编辑图像](https://docs.aitoearn.ai/api-reference/post-api-ai-image-edit.md): 接口说明:同步编辑图像,基于参考图与指令进行编辑。 - [异步生成图像](https://docs.aitoearn.ai/api-reference/post-api-ai-image-generate-async.md): 接口说明:异步生成图像,立即返回 logId,通过查询任务状态接口轮询结果。 - [异步编辑图像](https://docs.aitoearn.ai/api-reference/post-api-ai-image-edit-async.md): 接口说明:异步编辑图像,立即返回 logId,通过查询任务状态接口轮询结果。 - [图像任务状态](https://docs.aitoearn.ai/api-reference/get-api-ai-image-task-log-id.md): 接口说明:根据 logId 查询异步图像任务的执行状态与结果。 - [OpenAI 图像生成](https://docs.aitoearn.ai/api-reference/post-api-ai-images-generations.md): 接口说明:OpenAI Images API `/v1/images/generations` 的兼容端点(文生图)。请求、响应与错误格式完全遵循 OpenAI 规范:返回 OpenAI 原始 `ImagesResponse`,不使用 AiToEarn 通用响应包裹;图片链接为上游原始返回,不做转存。鉴权使用 `Authorization: Bearer `(OpenAI SDK 默认携带),已有 OpenAI SDK 或生态工具只需替换 baseURL 与 API Key 即可接入,按 AiToEarn 积分计费。 - [OpenAI 图像编辑](https://docs.aitoearn.ai/api-reference/post-api-ai-images-edits.md): 接口说明:OpenAI Images API `/v1/images/edits` 的兼容端点(图生图)。请求、响应与错误格式完全遵循 OpenAI 规范:支持 `application/json` 与 `multipart/form-data`(可直接上传图片与遮罩文件),返回 OpenAI 原始 `ImagesResponse`,不使用 AiToEarn 通用响应包裹;图片链接为上游原始返回,不做转存。鉴权使用 `Authorization: Bearer `(OpenAI SDK 默认携带),已有 OpenAI SDK 或生态工具只需替换 baseURL 与 API K… ### AI 服务/大语言模型 - [对话模型列表](https://docs.aitoearn.ai/api-reference/get-api-ai-models-chat.md): 接口说明:获取当前可用的对话模型目录,以及每个模型所属渠道、适用场景、输入输出模态、积分范围和价格。模型与能力可能随服务更新,调用对话接口时请以本接口的实时返回值为准。 - [OpenAI 对话](https://docs.aitoearn.ai/api-reference/post-api-ai-chat-completions.md): 接口说明:OpenAI Chat Completions API 的兼容端点,支持 `stream` 流式输出。请求、响应与错误格式完全遵循 OpenAI 规范;鉴权使用 `Authorization: Bearer `(OpenAI SDK 默认携带),已有 OpenAI SDK 或生态工具只需替换 baseURL 与 API Key 即可接入,按 AiToEarn 积分计费。 - [Anthropic 对话](https://docs.aitoearn.ai/api-reference/post-api-ai-v1-messages.md): 接口说明:Anthropic Messages API(`/v1/messages`)的兼容端点,支持流式输出(SSE)。请求、响应与错误格式遵循 Anthropic 规范;鉴权使用 `x-api-key` 头(Anthropic SDK 默认携带),已有 Anthropic SDK 只需替换 baseURL 与 API Key 即可接入,按 AiToEarn 积分计费。 - [Gemini 对话](https://docs.aitoearn.ai/api-reference/post-api-ai-v1beta-models-model-generate-content.md): 接口说明:Gemini `:generateContent` API 的兼容端点(非流式,聚合返回完整结果)。请求与响应格式遵循 Gemini 规范;鉴权使用 `x-goog-api-key` 头(Gemini SDK 默认携带),已有 Gemini SDK 只需替换 baseURL 与 API Key 即可接入,按 AiToEarn 积分计费。 - [Gemini 流式对话](https://docs.aitoearn.ai/api-reference/post-api-ai-v1beta-models-model-stream-generate-content.md): 接口说明:Gemini `:streamGenerateContent` API 的兼容端点(流式输出,SSE)。请求与响应格式遵循 Gemini 规范;鉴权使用 `x-goog-api-key` 头(Gemini SDK 默认携带),已有 Gemini SDK 只需替换 baseURL 与 API Key 即可接入,按 AiToEarn 积分计费。 ### 渠道管理/账号 - [账号列表](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-accounts.md): 接口说明:分页获取当前用户的渠道账号列表。 - [批量删除账号](https://docs.aitoearn.ai/api-reference/delete-api-v2-channels-accounts.md): 接口说明:根据 ID 列表批量删除账号。 - [账号详情](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-accounts-account-id.md): 接口说明:根据 accountId 获取账号详情。 - [删除账号](https://docs.aitoearn.ai/api-reference/delete-api-v2-channels-accounts-account-id.md): 接口说明:根据 accountId 删除账号。 - [账号授权状态](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-accounts-account-id-auth-status.md): 接口说明:查询指定账号的授权状态与有效期。 - [发布选项可选值](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-accounts-account-id-publish-options-field-values.md): 接口说明:查询某个已授权渠道账号在指定发布选项字段下的可选值,用于在创建发布任务前让用户选择平台要求的额外参数。 - [创建发布选项值](https://docs.aitoearn.ai/api-reference/post-api-v2-channels-accounts-account-id-publish-options-field-values.md): 接口说明:为某个已授权渠道账号创建平台发布时需要的额外参数值,创建成功后返回可直接用于发布任务的选项 `item`。 ### 渠道管理/内容发布 - [创建发布流程](https://docs.aitoearn.ai/api-reference/post-api-v2-channels-publish-flows.md): 接口说明:创建多平台发布 Flow,一次请求可生成多个单平台任务。 - [发布流程详情](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-publish-flows-flow-id.md): 接口说明:根据发布流程 ID 查询一次多账号发布流程及其任务状态。`flowId` 可从[「创建发布流程」](/api-reference/post-api-v2-channels-publish-flows)接口返回的 `data.flowId` 获取,也可从[「发布记录列表」](/api-reference/get-api-v2-channels-publish-records)返回项的 `flowId` 获取。 - [立即发布](https://docs.aitoearn.ai/api-reference/post-api-v2-channels-publish-tasks-task-id-publish-now.md): 接口说明:将定时任务调整为立即发布。`taskId` 来自创建发布流程接口成功响应中的 `data.tasks[n].id`。仅能对仍处于可立即发布状态的任务调用;使用示例占位符不会产生真实发布。 - [重试发布任务](https://docs.aitoearn.ai/api-reference/post-api-v2-channels-publish-tasks-task-id-retry.md): 接口说明:重试当前用户失败的发布任务。`taskId` 来自创建发布流程接口成功响应中的 `data.tasks[n].id`。只有接口返回的任务状态允许重试时才会成功。 - [取消发布任务](https://docs.aitoearn.ai/api-reference/delete-api-v2-channels-publish-tasks-task-id.md): 接口说明:取消指定的发布任务。`taskId` 来自创建发布流程接口成功响应中的 `data.tasks[n].id`。取消操作可能同时影响平台侧预约任务,是否支持取决于平台能力。 - [修改发布时间](https://docs.aitoearn.ai/api-reference/patch-api-v2-channels-publish-tasks-task-id-publish-at.md): 接口说明:修改待发布任务的发布时间。`taskId` 来自创建发布流程接口成功响应中的 `data.tasks[n].id`;`publishAt` 必须填写未来的 ISO 8601 时间,且任务状态必须允许修改。 - [发布记录列表](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-publish-records.md): 接口说明:查询当前 API Key 所属用户的发布记录。不传查询参数时返回全部记录;也可以按渠道账号、平台、发布时间范围或发布状态筛选。 - [待发布列表](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-publish-records-queued.md): 接口说明:查询当前仍在等待、排队或执行中的发布记录。不传查询参数时返回全部待发布记录;也可以按渠道账号、平台或发布时间范围筛选。 - [已发布列表](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-publish-records-published.md): 接口说明:查询已经发布完成的发布记录。不传查询参数时返回全部已发布记录;也可以按渠道账号、平台或发布时间范围筛选。 - [删除发布记录](https://docs.aitoearn.ai/api-reference/delete-api-v2-channels-publish-records-record-id.md): 接口说明:删除当前用户的终态本地发布记录,不删除平台作品。`recordId` 来自发布记录列表、已发布列表或发布记录详情接口。只能删除符合接口状态要求的终态记录。 - [发布记录详情](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-publish-records-record-id.md): 接口说明:根据发布记录 ID 查询单条发布记录的状态、内容、媒体地址和平台作品信息。`recordId` 来自[「发布记录列表」](/api-reference/get-api-v2-channels-publish-records)、[「待发布列表」](/api-reference/get-api-v2-channels-publish-records-queued)或[「已发布列表」](/api-reference/get-api-v2-channels-publish-records-published)返回项的 `id`。 - [App 拉起链接](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-publish-records-record-id-user-action.md): > **注意:** 这个接口只对抖音发布记录有效,`recordId` 必须来自**尚未完成发布**的记录。已发布完成、失败或其他状态的记录会返回业务错误 `15018`。 - [创建抖音打卡](https://docs.aitoearn.ai/api-reference/post-api-v2-channels-douyin-open-offline-qr.md): 接口说明:创建抖音线下打卡发布入口。API Key 属于接入方;扫码用户不需要 AiToEarn 账号,也无需提前授权或绑定抖音账号。 - [获取小红书签名](https://docs.aitoearn.ai/api-reference/post-api-v2-channels-rednote-open-offline-qr-share-config.md): 接口说明:获取前端调用小红书 `xhs.share` 所需的签名配置。API Key 属于接入方;扫码用户不需要 AiToEarn 账号,也无需提前授权或绑定小红书账号。 ### 渠道管理/平台 - [平台列表](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-platforms.md): 接口说明:获取当前已注册渠道平台的元数据目录,包括平台展示信息、授权方式、内容限制、媒体规则、发布与互动能力、发布选项 Schema 和可用状态。平台能力可能随服务更新,请以本接口的实时返回值为准。 - [平台发布选项](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-platforms-platform-publish-options.md): 接口说明:查询指定平台在发布时是否需要平台专属的额外参数,以及这些参数的字段名、取值结构和账号要求。 ### 渠道管理/作品 - [解析作品链接](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-works-link-info.md): 接口说明:按指定平台解析社媒作品链接,返回已识别的作品基础信息、快照数组和平台扩展字段。 - [作品列表](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-works-platform.md): 接口说明:查询指定已授权账号在指定平台的作品列表。仅在平台声明 `work.listWorks` 能力时可调用;当前快手返回 cursor 分页结构。 - [作品详情](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-works-platform-platform-work-id.md): 接口说明:查询指定平台作品详情。调用前请以「平台列表」的 `capabilities.work.getDetail` 为准;不支持时返回 `code: 15080`,`data` 仅包含 `platform` 与 `capability`。 - [作品数据统计](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-works-platform-platform-work-id-analytics.md): 接口说明:查询指定平台作品的统计快照。返回 `code: 0` 不代表一定有指标数据;未匹配到已采集的作品数据时,响应会返回空 `snapshots` 与提示 `message`,不会返回 `metrics`。 - [验证作品归属](https://docs.aitoearn.ai/api-reference/post-api-v2-channels-works-platform-platform-work-id-ownership-verify.md): 接口说明:验证作品是否属于指定账号。调用前先通过账号列表接口获取候选账号,再通过该账号在对应平台的作品列表获取作品 ID。`platform`、`platformWorkId` 和 `candidateAccountId` 必须来自同一平台和同一已授权账号。 ### 渠道管理/账号分组 - [分组列表](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-account-groups.md): 接口说明:获取当前用户的账号分组列表。 - [创建分组](https://docs.aitoearn.ai/api-reference/post-api-v2-channels-account-groups.md): 接口说明:创建账号分组。 - [批量删除分组](https://docs.aitoearn.ai/api-reference/delete-api-v2-channels-account-groups.md): 接口说明:根据 ID 列表批量删除账号分组。 - [更新分组](https://docs.aitoearn.ai/api-reference/patch-api-v2-channels-account-groups-group-id.md): 接口说明:根据 groupId 更新分组信息。 - [调整账号排序](https://docs.aitoearn.ai/api-reference/patch-api-v2-channels-account-groups-group-id-accounts-rank.md): 接口说明:更新指定分组内的账号排序。 ### 渠道管理/授权 - [发起平台授权](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-accounts-auth-platform.md): 接口说明:生成平台授权二维码、会话 ID 和过期时间。 - [获取授权状态](https://docs.aitoearn.ai/api-reference/get-api-v2-channels-accounts-auth-platform-status-session-id.md): 接口说明:轮询平台授权 Session 状态。`sessionId` 必须使用[发起平台授权](/api-reference/get-api-v2-channels-accounts-auth-platform)成功响应中的 `data.sessionId`,不能自行生成或跨授权会话复用。 ### 资源管理 - [生成上传签名](https://docs.aitoearn.ai/api-reference/post-api-assets-upload-sign.md): 接口说明:生成用于直传对象存储的签名 URL,上传路径按用户与资源类型自动生成。查看 [资源上传教程](/zh/use/asset-upload)。 - [确认资源上传](https://docs.aitoearn.ai/api-reference/post-api-assets-id-confirm.md): 接口说明:客户端直传对象存储完成后回调确认,记录资源最终状态与访问路径。 ## 帮助文档 ### 快速开始 - [新手入口](https://docs.aitoearn.ai/zh/help/index.md): 按目标选择 AiToEarn 使用指南。 - [创作者指南](https://docs.aitoearn.ai/zh/help/creator/index.md): 从淘金广场接任务并获得奖励。 - [广告主指南](https://docs.aitoearn.ai/zh/help/advertiser/index.md): 发布任务,让创作者帮你获取曝光、互动和潜在客户。 ### 短剧任务 - [短剧任务指南](https://docs.aitoearn.ai/zh/help/short-drama/index.md): 从任务准备、账号报备和智能剪辑,到发布、复盘与结算前检查。 - [账号报备流程及教程](https://docs.aitoearn.ai/zh/help/account-reporting/index.md): 短剧任务发布前的社媒账号报备流程与资料准备。 - [云工作区指南](https://docs.aitoearn.ai/zh/help/cloud-workspace/index.md): 了解云工作区的核心功能,并完成海外账号授权、Facebook 养号和指纹浏览器使用。 - [短剧/小说分成规则](https://docs.aitoearn.ai/zh/help/revenue-sharing/index.md): 短剧与小说平台的 CPS 分成比例。 ### 平台运营 - [Facebook 账号运营指南](https://docs.aitoearn.ai/zh/help/facebook-account-operations/index.md): Facebook 短剧账号的准备、内容剪辑与日常运营建议。 - [TikTok 账号运营指南](https://docs.aitoearn.ai/zh/help/tiktok-account-operations/index.md): TikTok 短剧账号的准备、发布与日常运营建议。 - [YouTube 账号运营指南](https://docs.aitoearn.ai/zh/help/youtube-account-operations/index.md): YouTube 短剧频道的准备、发布与日常运营建议。 ### 常见问题 - [新手指南](https://docs.aitoearn.ai/zh/help/guide.md) - [常见问题](https://docs.aitoearn.ai/zh/help/faq.md) ### 概览 - [中国用户如何做内容出海,如何解决账号问题](https://docs.aitoearn.ai/zh/help/about.md): 详细指南:帮助中国用户解决海外社交媒体平台账号注册与使用问题 - [Aitoearn 发布功能入门](https://docs.aitoearn.ai/zh/help/3-getting-started-with-aitoearn-publishing-features.md) - [什么是 Aitoearn?](https://docs.aitoearn.ai/zh/help/4-what-is-aitoearn.md): 面向创作者和团队的开源 AI 社交媒体管理平台。 - [自然流量指南:15+ 主流社交平台对比](https://docs.aitoearn.ai/zh/help/social-platforms.md): Aitoearn 支持多个主流社交媒体平台,帮助您在一个地方完成内容发布管理和数据分析。 ### 社交平台 - [在 Aitoearn 中使用 Instagram](https://docs.aitoearn.ai/zh/help/social-platforms/554-using-instagram-with-aitoearn.md): 借助 Aitoearn,您可以在轻松规划 Instagram 的帖子、轮播、故事(Stories)与短视频(Reels)的发布计划,获得发布策略建议,并与粉丝高效互动。 - [在 Aitoearn 中使用 Facebook](https://docs.aitoearn.ai/zh/help/social-platforms/555-using-facebook-with-aitoearn.md): 有了 Aitoearn,无论您的社群身在何处,都能与他们在线互动。与您的 Facebook 主页粉丝分享帖子和 Reels。发布后,您可以分析帖子表现并与帖子评论互动,所有这一切都在一个工具中实现! - [在 Aitoearn 中使用 Threads](https://docs.aitoearn.ai/zh/help/social-platforms/556-using-threads-with-aitoearn.md): Meta Threads 现已支持连接到 Aitoearn。完成连接后,您可以在桌面端编写与排期 Threads 帖子。 - [在 Aitoearn 中使用 YouTube](https://docs.aitoearn.ai/zh/help/social-platforms/557-using-youtube-with-aitoearn.md): YouTube 是全球最大的视频平台,适合品牌传播、知识分享与商业变现。Aitoearn 帮助您进行内容规划、批量发布与数据分析。 - [在 Aitoearn 中使用 Pinterest](https://docs.aitoearn.ai/zh/help/social-platforms/558-using-pinterest-with-aitoearn.md): Pinterest 拥有近 5 亿月活用户,是为网站引流与转化的理想平台。Aitoearn 可帮助你提前安排 Pin,触达新受众。 - [在 Aitoearn 中使用 TikTok](https://docs.aitoearn.ai/zh/help/social-platforms/559-using-tiktok-with-aitoearn.md): 凭借 6.92% 的平均互动率和用户每日 52 分钟的平均使用时长,TikTok是一个非常强大的平台。 - [在 Aitoearn 中使用 LinkedIn](https://docs.aitoearn.ai/zh/help/social-platforms/560-using-linkedin-with-aitoearn.md) - [在 Aitoearn 中使用 X/Twitter](https://docs.aitoearn.ai/zh/help/social-platforms/561-using-twitter-with-aitoearn.md) - [在 Aitoearn 中使用小红书](https://docs.aitoearn.ai/zh/help/social-platforms/562-using-rednote-with-aitoearn.md): 小红书是中国领先的生活方式分享社区,以其独特的图文种草文化而闻名。通过 Aitoearn,您可以轻松管理小红书内容,提升品牌影响力。 - [在 Aitoearn 中使用抖音](https://docs.aitoearn.ai/zh/help/social-platforms/563-using-douyin-with-aitoearn.md): 抖音是中国最大的短视频平台,拥有庞大的用户群体和强大的算法推荐机制。通过 Aitoearn,您可以高效管理抖音内容创作和发布。 - [在 Aitoearn 中使用微信视频号(beta)](https://docs.aitoearn.ai/zh/help/social-platforms/564-using-wechatchannels-with-aitoearn.md): 微信视频号是微信生态内的重要短视频与直播平台,适合品牌内容传播与粉丝运营。通过 Aitoearn,您可以高效完成内容创作、排期发布与数据分析。 - [在 Aitoearn 中使用快手](https://docs.aitoearn.ai/zh/help/social-platforms/565-using-kwai-with-aitoearn.md): 快手是中国主流的短视频平台,强调真实记录与社区互动。通过 Aitoearn,您可以统一管理快手账号的内容创作、排期与分析。 - [在 Aitoearn 中使用微信公众号(beta)](https://docs.aitoearn.ai/zh/help/social-platforms/566-using-wechatofficial-with-aitoearn.md): 微信公众号适合品牌内容传播、活动运营与用户沉淀。通过 Aitoearn,您可以创作高质量图文、管理发布计划并观察数据表现。 - [在 Aitoearn 中使用 Bilibili](https://docs.aitoearn.ai/zh/help/social-platforms/567-using-bilibili-with-aitoearn.md): 哔哩哔哩是以年轻用户为主的综合视频社区,内容类型多元,强调创作与互动。Aitoearn 帮助您统一规划内容与数据复盘。 - [每日发布限制](https://docs.aitoearn.ai/zh/help/social-platforms/568-daily-posting-limits.md) - [各社交媒体频道字符限制](https://docs.aitoearn.ai/zh/help/social-platforms/569-Charcter-limits-for-each-social-network.md) ## OpenAPI Specs - [aitoearn.openapi](/openapi/zh/aitoearn.openapi.json) > The links below point to documentation indexes. Follow each `/_llms/` index recursively until you reach documentation pages. ## Indexes - [English (108 pages)](https://docs.aitoearn.ai/_llms/en.md): Documentation for English. - [English / API Docs (70 pages)](https://docs.aitoearn.ai/_llms/en/api-docs.md): Documentation for English / API Docs.