Documentation Index
Fetch the complete documentation index at: https://docs.writerzroom.com/llms.txt
Use this file to discover all available pages before exploring further.
What You Can Do
Use the Style Profiles API to list available writing modes and retrieve individual profile details before generation. This is the easiest way to keep your integration aligned with the current style profile catalog.
List Style Profiles
GET https://api.writerzroom.com/v1/style-profiles
Authorization: Bearer YOUR_API_KEY
{
"style_profiles": [
{
"id": "general_blog",
"name": "General Blog",
"category": "marketing",
"tone": "conversational",
"formality": "moderate"
},
{
"id": "phd_academic",
"name": "PhD Academic",
"category": "academic",
"tone": "formal",
"formality": "high"
}
]
}
Get Style Profile by Slug
GET https://api.writerzroom.com/v1/style-profiles/{slug}
Authorization: Bearer YOUR_API_KEY
Supported Operations
- List style profiles
- Retrieve a specific style profile by slug
- Read profile metadata: name, tone, voice, audience, platform, formatting details
Why It Matters
When style profile choices are generated from the API rather than hard-coded into your product, users see the current catalog and your integration stays easier to maintain over time.