Kwata Convert

Universal Document Converter - Powered by AI

Status
🟢 Online
Active Jobs
0
Queue
0
Uptime
--

🚀 Convert Documents

📊 Supported Formats

📄
HTML → PDF
📝
HTML → DOCX
📋
Markdown → PDF
📑
RTF → DOCX

🔗 API Endpoints

Health: GET /health
Convert: POST /convert
Status: GET /status/:id
Download: GET /download/:id
Formats: GET /formats

🔧 API Usage Examples

cURL Commands:

# Convert HTML to PDF (API Key Required) curl -X POST https://convert.kwatainc.com/convert \ -H "Content-Type: application/json" \ -H "x-api-key: YOUR_API_KEY" \ -d '{ "content": "<h1>Hello World</h1><p>This is a test document.</p>", "outputFormat": "pdf", "filename": "test-document" }'

n8n Integration:

{ "method": "POST", "url": "http://convert:3095/convert", "headers": { "Content-Type": "application/json", "x-api-key": "YOUR_API_KEY" }, "body": { "content": "{{ $json.htmlContent }}", "outputFormat": "pdf", "filename": "{{ $json.filename || 'document' }}" } }