Documentation
Welcome to GenRex documentation. Learn how to generate research-backed content, images, and complete documents using our API.
API Reference
Complete API documentation with request/response examples.
Authentication
Learn how to authenticate your API requests.
Document Generation
Generate complete documents with research, text, and images.
Webhooks
Get notified when your content is ready.
Overview
GenRex is an AI-powered content generation platform that combines web research with advanced language models to create high-quality, factual content. The platform offers four main modules:
- Documents - Full pipeline: research, text generation, and optional images
- Research - Standalone web research with citations
- Text - Standalone text generation
- Images - Standalone image generation
Base URL
https://api.genrex.io/v1
Quick Start
Generate your first document with a single API call:
curl -X POST https://api.genrex.io/v1/document/create \
-H "Authorization: Bearer grx_sk_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"prompt": "Best IoT Projects for College Students in 2025",
"content_type": "article",
"text": { "length": 2000 },
"image": { "enabled": true }
}'