MrStrongAI Content Generator: AI-Powered API for Chinese Social Media

Dev.to / 2026/3/26

💬 オピニオンDeveloper Stack & InfrastructureTools & Practical Usage

要点

  • MrStrongAI Content Generator is presented as an AI-powered API designed to create high-quality content at scale for Chinese social media platforms.
  • The service supports multiple content types, including short drama script generation with episode structure and genre options, plus Xiaohongshu title generation and Douyin caption generation.
  • Features highlighted for Xiaohongshu include trending emojis/keywords, CTR-oriented title formulas, multiple writing styles, and algorithm-oriented optimization.
  • For Douyin, the API can generate captions with attention-grabbing hooks, trending hashtags, configurable lengths, and call-to-action phrases.
  • Integration is positioned as “Quick Start” with RapidAPI authentication (X-RapidAPI-Key/Host) and examples for calling endpoints such as /api/v1/xiaohongshu-title.

MrStrongAI Content Generator: AI-Powered API for Chinese Social Media

🚀 Introduction

Creating engaging content for Chinese social media platforms can be time-consuming. That's why I built MrStrongAI Content Generator - an AI-powered API that helps content creators, marketers, and MCN agencies generate high-quality Chinese content at scale.

✨ Features

🎭 Short Drama Script Generation

Generate complete short drama scripts with multiple episodes:

  • Character profiles and dialogues
  • Scene descriptions
  • Plot hooks for each episode
  • Support for popular genres: 霸总(Boss), 甜宠(Sweet Romance), 悬疑(Mystery), 逆袭(Comeback), 古风(Ancient Style)

📕 Xiaohongshu Title Generation

Create viral Xiaohongshu titles with:

  • Trending emojis and keywords
  • High CTR (Click-Through Rate) formulas
  • Multiple style options
  • Optimized for the Xiaohongshu algorithm

🎵 Douyin Copy Generation

Generate engaging Douyin video captions featuring:

  • Hook sentences to grab attention
  • Trending hashtags
  • Multiple length options (short/medium/long)
  • Call-to-action phrases

🚀 Quick Start

Authentication

All API requests require a RapidAPI key passed in the header:

X-RapidAPI-Key: YOUR_RAPIDAPI_KEY
X-RapidAPI-Host: mrstrongai-content-generator.p.rapidapi.com

Base URL

https://mrstrongai-content-generator.p.rapidapi.com

💻 Code Examples

Generate Xiaohongshu Title (JavaScript)

async function generateXiaohongshuTitle(topic, style = 'trendy', count = 5) {
  const url = 'https://mrstrongai-content-generator.p.rapidapi.com/api/v1/xiaohongshu-title';

  const options = {
    method: 'POST',
    headers: {
      'content-type': 'application/json',
      'X-RapidAPI-Key': 'YOUR_RAPIDAPI_KEY',
      'X-RapidAPI-Host': 'mrstrongai-content-generator.p.rapidapi.com'
    },
    body: JSON.stringify({
      topic: topic,
      style: style,
      count: count
    })
  };

  try {
    const response = await fetch(url, options);
    const result = await response.json();
    console.log(result);
    return result;
  } catch (error) {
    console.error(error);
  }
}

// Generate 5 skincare-themed titles
generateXiaohongshuTitle('skincare', 'trendy', 5);

Generate Douyin Copy (Python)

import requests

def generate_douyin_copy(topic, tone="exciting", length="medium"):
    url = "https://mrstrongai-content-generator.p.rapidapi.com/api/v1/douyin-copy"

    payload = {
        "topic": topic,
        "tone": tone,
        "length": length
    }

    headers = {
        "content-type": "application/json",
        "X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
        "X-RapidAPI-Host": "mrstrongai-content-generator.p.rapidapi.com"
    }

    response = requests.post(url, json=payload, headers=headers)
    return response.json()

# Generate travel-themed Douyin copy
result = generate_douyin_copy("travel", "exciting", "medium")
print(result)

Generate Drama Script (cURL)

curl -X POST \
  https://mrstrongai-content-generator.p.rapidapi.com/api/v1/drama-script \
  -H 'X-RapidAPI-Key: YOUR_RAPIDAPI_KEY' \
  -H 'X-RapidAPI-Host: mrstrongai-content-generator.p.rapidapi.com' \
  -H 'Content-Type: application/json' \
  -d '{
    "genre": "bazong",
    "episodes": 10,
    "title": "CEO Secret Love"
  }'

📊 Pricing

Plan Price Requests/Month
BASIC Free 100
PRO $9.99 10,000
ULTRA $29.99 50,000

🎯 Use Cases

  • Social media content creation: Generate batch content for multiple accounts
  • Video script writing: Create scripts for short dramas and videos
  • Marketing copy generation: Produce ad copy and promotional content
  • Influencer content production: Help influencers maintain posting frequency
  • MCN agency automation: Streamline content production workflows

🔗 Links

💡 Why I Built This

As a developer working with Chinese social media platforms, I noticed a gap in the market for AI content generation tools specifically optimized for Chinese platforms like Xiaohongshu and Douyin. Most existing tools focus on Western platforms, so I created this API to fill that gap.

🤝 Feedback Welcome!

I'd love to hear your thoughts and suggestions. If you try the API, please share your experience in the comments below!

This API is part of the MrStrongAI API suite, which also includes News Aggregator, Price Tracker, and AI Content Detector APIs.