¶ Introduction
The Publisher Generate API is an AI content rewriting interface provided by Ace Data Cloud. It can intelligently rewrite original content according to the characteristics and style of the target platform, generating high-quality content suitable for that platform.
¶ Features
- Platform Adaptation: Automatically adjusts according to the content style of different platforms
- AI Driven: Uses advanced AI models for content rewriting
- Retains Original Meaning: Maintains the core viewpoints and information of the original text while rewriting
¶ Basic Usage
curl -X POST 'https://api.acedata.cloud/publisher/generate' \
-H 'Authorization: Bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"title": "AI API Getting Started Guide",
"content": "# AI API Getting Started\n\nThis article will introduce how to use the AI API...",
"channel": "xiaohongshu"
}'
¶ Response Example
{
"success": true,
"data": {
"title": "Xiaohongshu Tutorial: AI API Getting Started Guide ✨",
"content": "✨ Recently discovered a super useful AI API...\n\n💡 Getting started is super easy...\n\n📌 The actual effect is amazing..."
}
}
¶ Supported Platforms
| Platform | channel Value | Rewriting Style Description |
|---|---|---|
| Xiaohongshu | xiaohongshu | Youthful, expressive, and promotional style |
| Medium | medium | Professional blog, long English articles |
| Dev.to | dev | Technical community, developer-friendly |
| X | x | Concise and refined, social media style |
¶ Notes
- Each generation request consumes 1.0 points
- Currently supports content generation for 4 platforms
- The generated content can be directly used in the content field of the Publish API
