AI Content Generation API
Generate high-performing SEO blog titles, outline structures, internal linking maps, text summaries, and paragraph rewrites programmatically.
POST /api/v1/ai/blog-pack
Query Parameters
topicRequired • string
Base title focus or target topic query keywords.
toneOptional • string
Style tone (professional, casual, bold). Default is professional.
max_suggestionsOptional • integer
Total title recommendations returned. Default is 5.
Example Response
{
"success": true,
"topic": "Next.js 15 Static Rendering",
"titles": [
"Ultimate Guide to Next.js 15 Static Rendering",
"Mastering Static Rendering in Next.js 15: Step-by-Step",
"Why Next.js 15 Static Rendering Wins in 2026"
],
"outline": {
"h2_headings": [
"Introduction to Static Rendering",
"Key Features of Next.js 15",
"Step-by-Step Implementation Flow"
]
},
"readability_score": 82
}NodeJS / fetch request
const response = await fetch("https://toolchi.online/api/v1/ai/blog-pack", {
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer tc_live_xxxxxxxx"
},
body: JSON.stringify({
topic: "React Compiler Optimization",
tone: "professional"
})
});
const data = await response.json();
console.log("Suggested titles:", data.titles);Ready to automate content outlining pipelines?
Generate a sandbox API key and run queries directly in your terminal.
