Documentation
API Documentation
Reference docs and integration examples for the RoboWrite API.
Quick Start
Get started with the RoboWrite API in just a few minutes. This guide will walk you through authentication and making your first API call.
Authentication
All API requests require an API key. Include your key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
Base URL
https://api.robowrite.ai/v1
Generate Content
Create AI-generated content with this example POST request:
POST /generate
{
"topic": "AI writing tips",
"type": "blog_post",
"tone": "professional",
"word_count": 1000
}Response
{
"id": "gen_abc123",
"status": "completed",
"content": {
"title": "10 AI Writing Tips...",
"body": "...",
"meta_description": "..."
},
"seo_score": 92,
"created_at": "2025-12-18T10:00:00Z"
}Rate Limits
API rate limits depend on your plan:
| Plan | Requests/min | Requests/day |
|---|---|---|
| Free | 10 | 100 |
| Pro | 60 | 1,000 |
| Team | 120 | 10,000 |
Changelog
Documentation updates and API changes are listed here as they are published.
No public changelog entries yet. Check back soon for updates.
