Sign In

Documentation

Everything you need to integrate WriterzRoom into your applications. From quick starts to advanced LangGraph workflows.

Quick Start Guides

API Reference

Base URL

https://api.writerzroom.com

Endpoints

POST/api/generate
Content Generation

Generate content using templates and style profiles

GET/api/templates
Templates

List all available content templates

POST/api/style-profiles
Style Profiles

Create or update content style profiles

GET/api/status/{request_id}
Status

Check generation status for long-running tasks

POST/api/langgraph/workflow
Workflows

Execute custom LangGraph workflows

GET/api/health
System

Check system health and service status

SDKs & Libraries

Python

Full-featured SDK with async support and type hints

Installation

pip install writerzroom

Example 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/sdk

Example 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?

Community

Join our Discord community for discussions and support

Join Discord

Support

Get direct help from our support team

Contact Support

Tutorials

Step-by-step video tutorials and guides

Watch Tutorials

Latest Updates

NEW

LangGraph v2.0 Integration

Enhanced workflow orchestration with improved state management

UPDATE

Python SDK v1.5.0

Added async batch processing and improved error handling

FIX

API Rate Limiting

Improved rate limiting behavior for enterprise customers

View Full Changelog