πŸš€ OpenClow API

One API Key. 16+ Content Types. 11 Languages. Under 1 Second.

⚑ Quick Start 🎯 Why Choose Us πŸ’° Pricing 🎨 Live Demo

⚑ 5-Second Quick Start

Just a keyword β€” everything else uses smart defaults.

curl -X POST https://nxsuapi.com/generate \
  -H "Content-Type: application/json" \
  -d '{"keyword": "sunscreen"}'
πŸ’‘ Pro Tip: All other parameters are optional. Defaults: use_case: general, language: en, tone: professional, audience: consumers.
🎯

Buy 1, Get 16

Subscribe to any scenario and unlock all 16 content types instantly. SEO, Twitter, TikTok, Blog, Email, Ads, and more β€” all included.

🌍

True Localization

11 languages with culturally-adapted expressions, not just translation. Each language uses local idioms and appropriate formality.

⚑

<1 Second Response

Average response under 1 second. No more waiting for content. Batch generation also available.

πŸ›‘οΈ

Risk-Free Trial

500 free requests/month. No credit card required. 7-day money-back guarantee on all paid plans.

🎯 Unmatched Value: Buy 1, Get All 16 Scenarios

Subscribe to any single scenario and instantly unlock all 16 content typesβ€”SEO, Twitter, TikTok, Blog, Email, Ads, and more. Every scenario includes 11-language true localization, 6 tones, and 5 audience modes. One API key, endless possibilities. Deploy in under 60 seconds.

⚑ Lightning Fast & Risk-Free

Average response under 1 second. Free tier includes 500 requests/monthβ€”no credit card required. 7-day money-back guarantee on all paid plans. Ready-to-use code examples in cURL, Node.js, Python, Java, Go, and PHP.


πŸ“š All 16 Content Types

ScenarioDescriptionParameter
πŸ” SEOMeta descriptions, title tags, keyword suggestionsseo
🐦 TwitterTweets, threads, hashtag optimizationtweet
🎡 TikTokVideo scripts with timestamps & music suggestionstiktok
πŸ“§ EmailMarketing emails, subject lines, CTAsemail
πŸ“ BlogLong-form articles (1800+ words) with structureblog
πŸ“’ Ad CopyAd copies, multiple variants for A/B testingad
πŸ›οΈ ProductProduct descriptions, feature-benefit listsproduct
⭐ ReviewProduct reviews, pros and consreview
❓ FAQFAQ answers, Q&A formatfaq
πŸ“° HeadlineClick-worthy headlines under 70 charsheadline
πŸ“’ Press ReleaseProfessional press releases with datelinepress_release
πŸ“¬ NewsletterNewsletter content, preview textnewsletter
🎬 Video DescriptionYouTube descriptions with timestampsvideo_description
🎯 Landing PageHigh-converting landing page copylanding_page
πŸ“ Google BusinessBusiness profile descriptions, local SEOgoogle_business
πŸ’¬ Social MediaCross-platform social postssocial

πŸŽ›οΈ Request Parameters

ParameterTypeRequiredDefaultDescription
keywordstringYes-The topic or keyword to generate content about
use_casestringNogeneralContent type (see table above)
languagestringNoenen, zh, es, fr, de, ja, ko, pt, it, ru, ar
tonestringNoprofessionalprofessional, casual, humorous, urgent, empathetic, inspiring
audiencestringNoconsumersbeginners, experts, business, consumers, students
brand_namestringNo-Your brand name to include naturally
custom_requirementstringNo-Additional instructions

πŸ“ Code Examples β€” Choose Your Level

🟒 Level 1: Bare Minimum (1 parameter)

// cURL
curl -X POST https://nxsuapi.com/generate \
  -H "Content-Type: application/json" \
  -d '{"keyword": "sunscreen"}'

// Node.js
const response = await axios.post('https://nxsuapi.com/generate', { keyword: 'sunscreen' });

// Python
response = requests.post('https://nxsuapi.com/generate', json={'keyword': 'sunscreen'})

🟑 Level 2: Common Options (3 parameters)

// cURL
curl -X POST https://nxsuapi.com/generate \
  -H "Content-Type: application/json" \
  -d '{"keyword": "sunscreen", "use_case": "seo", "language": "zh"}'

// Node.js
const response = await axios.post('https://nxsuapi.com/generate', {
  keyword: 'sunscreen',
  use_case: 'seo',
  language: 'zh'
});

// Python
response = requests.post('https://nxsuapi.com/generate', json={
    'keyword': 'sunscreen',
    'use_case': 'seo',
    'language': 'zh'
})

πŸ”΄ Level 3: Full Control (all parameters)

// cURL
curl -X POST https://nxsuapi.com/generate \
  -H "Content-Type: application/json" \
  -d '{
    "keyword": "sunscreen",
    "use_case": "ad",
    "tone": "urgent",
    "language": "en",
    "audience": "business",
    "brand_name": "SunGuard",
    "custom_requirement": "Focus on SPF 50 and reef-safe ingredients"
  }'

// Node.js
const response = await axios.post('https://nxsuapi.com/generate', {
  keyword: 'sunscreen',
  use_case: 'ad',
  tone: 'urgent',
  language: 'en',
  audience: 'business',
  brand_name: 'SunGuard',
  custom_requirement: 'Focus on SPF 50 and reef-safe ingredients'
});

// Python
response = requests.post('https://nxsuapi.com/generate', json={
    'keyword': 'sunscreen',
    'use_case': 'ad',
    'tone': 'urgent',
    'language': 'en',
    'audience': 'business',
    'brand_name': 'SunGuard',
    'custom_requirement': 'Focus on SPF 50 and reef-safe ingredients'
})

πŸ“¦ Java (OkHttp)

OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\"keyword\": \"sunscreen\"}");
Request request = new Request.Builder()
    .url("https://nxsuapi.com/generate")
    .post(body)
    .addHeader("Content-Type", "application/json")
    .build();
Response response = client.newCall(request).execute();

🐹 Go

package main
import ("bytes"; "net/http"; "io")
func main() {
    jsonStr := []byte(`{"keyword": "sunscreen"}`)
    resp, _ := http.Post("https://nxsuapi.com/generate", "application/json", bytes.NewBuffer(jsonStr))
    defer resp.Body.Close()
    body, _ := io.ReadAll(resp.Body)
    println(string(body))
}

🐘 PHP

<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://nxsuapi.com/generate");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode(["keyword" => "sunscreen"]));
curl_setopt($ch, CURLOPT_HTTPHEADER, ["Content-Type: application/json"]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;

πŸ“€ Example Response

{
  "success": true,
  "content": "Discover the best reef-safe sunscreen for your skin...",
  "quality_score": 88,
  "seo_score": 85,
  "readability_score": 95,
  "word_count": 28,
  "suggestions": ["Great quality! Consider A/B testing different tones."],
  "support_url": "https://nxsuapi.com/chat/general"
}

⚠️ Error Codes

CodeDescriptionSolution
400Missing keyword parameterAdd "keyword" to your request body
403Invalid API keyCheck your x-api-key header
429Rate limit exceededUpgrade your plan or wait
500Internal server errorContact support, retry later

πŸ’° Pricing Plans

PlanPriceRequests/MonthFeatures
Free$0500All 16 scenarios, 11 languages, community support
Starter$9.995,000Everything in Free + priority support
Pro$29.9920,000Everything in Starter + dedicated support
Unlimited$99100,000Everything in Pro + SLA guarantee

πŸ’‘ All paid plans include a 7-day money-back guarantee.

πŸ“– Real-World Use Cases

πŸ›οΈ E-commerce: Batch Product Descriptions

Challenge: "I have 200 products and no time to write unique descriptions."

Solution: Loop through your product list and call the API for each.

const products = ['wireless earbuds', 'bluetooth speaker', 'smart watch'];
for (const product of products) {
  const response = await axios.post('https://nxsuapi.com/generate', {
    keyword: product,
    use_case: 'product'
  });
  console.log(response.data.content);
}

πŸ“± Social Media Manager: Multi-Platform Content

Challenge: "I need fresh content for Twitter, TikTok, and email daily."

Solution: One API key, just change use_case.

// Morning tweet
await generate('product launch', 'tweet');
// Afternoon TikTok script  
await generate('product demo', 'tiktok');
// Evening newsletter
await generate('weekly update', 'email');

🌍 Global Team: True Localization

Challenge: "Our campaign runs in 11 countriesβ€”translations feel robotic."

Solution: Set language for culturally-adapted content.

// German: formal business tone
await generate('premium service', 'email', { language: 'de', audience: 'business' });
// Japanese: appropriate keigo
await generate('new feature', 'tweet', { language: 'ja' });

Ready to supercharge your content?

Start free β€” 500 requests/month. No credit card required.

🎨 Try Live Demo πŸ“˜ Get API Key

Home | Privacy | Terms

Β© 2026 OpenClow. All rights reserved.