Documentation
Everything you need to integrate WriterzRoom into your applications. From quick starts to advanced LangGraph workflows.
Quick Start Guides
Getting Started
Set up your first AI content generation workflow in under 5 minutes
API Quick Start
Generate your first content using our REST API
LangGraph Integration
Build custom agent workflows with LangGraph
Style Profiles
Create and customize content generation styles
API Reference
Base URL
https://api.writerzroom.comEndpoints
/api/generateGenerate content using templates and style profiles
/api/templatesList all available content templates
/api/style-profilesCreate or update content style profiles
/api/status/{request_id}Check generation status for long-running tasks
/api/langgraph/workflowExecute custom LangGraph workflows
/api/healthCheck system health and service status
SDKs & Libraries
Python
Full-featured SDK with async support and type hints
Installation
pip install writerzroomExample Usage
from writerzroom import Client
client = Client(api_key="your-api-key")
content = await client.generate(
template="blog_post",
style_profile="technical_dive",
topic="Machine Learning Trends 2025"
)TypeScript/JavaScript
Modern SDK with full TypeScript support
Installation
npm install @writerzroom/sdkExample Usage
import { writerzroom } from '@writerzroom/sdk';
const client = new writerzroom({ apiKey: 'your-api-key' });
const content = await client.generate({
template: 'blog_post',
styleProfile: 'technical_dive',
topic: 'Machine Learning Trends 2025'
});curl
Direct HTTP API access for any programming language
Installation
curl (pre-installed on most systems)Example Usage
curl -X POST "https://api.writerzroom.com/generate" \
-H "Authorization: Bearer your-api-key" \
-H "Content-Type: application/json" \
-d '{
"template": "blog_post",
"style_profile": "technical_dive",
"topic": "Machine Learning Trends 2025"
}'Feature Documentation
Multi-Agent Workflows
Orchestrate complex content generation using specialized AI agents
LangGraph Integration
Build sophisticated AI workflows with state management
Content Templates
Pre-built templates for various content types and formats
Style Profiles
Consistent content styling and voice across generations
Enterprise Features
Advanced security, monitoring, and compliance features
Real-time Monitoring
Monitor content generation performance and system health
Need Help?
Latest Updates
LangGraph v2.0 Integration
Enhanced workflow orchestration with improved state management
Python SDK v1.5.0
Added async batch processing and improved error handling
API Rate Limiting
Improved rate limiting behavior for enterprise customers