DocxAPI
Console Billing
M

Console

Monthly usage
0%
Documents used
0 / 0
Current plan
Free
Tier
Bonus credits
0
Never expire

API Keys

The key is shown only once — save it immediately. Never share it or expose it in client-side code. Key limits: Free & Starter: 1 key · Pro: 3 keys · Agency: unlimited.
Key Label Domains Status Last used Action

No API keys yet. Create your first key to start generating documents.

Quick Start

Use your API key to generate .docx documents. Choose your preferred method below.
Terminal
curl -X POST https://api.searchops.io/v1/generate \
  -H "Content-Type: application/json" \
  -H "x-api-key: your_api_key" \
  -d '{
    "input": "markdown",
    "content": "# Monthly Report\n\n## Summary\n\nTotal revenue: **$12,450**\n\n| Month | Revenue |\n|-------|--------|\n| Jan | $4,200 |\n| Feb | $3,800 |\n| Mar | $4,450 |",
    "format": "file"
  }' --output report.docx
MD to Docx
POST: https://api.searchops.io/v1/generate
Headerx-api-key: sk_live_...
Inputmarkdown
Formatfile (returns binary .docx)
ResponseFile → report.docx

Paste directly into your n8n workflow canvas with Ctrl+V

Node.js
const res = await fetch('https://api.searchops.io/v1/generate', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'x-api-key': 'your_api_key',
  },
  body: JSON.stringify({
    input: 'markdown',
    content: '# Hello World\n\nThis is a test document.',
    format: 'file',
  }),
});

const buffer = await res.arrayBuffer();
// buffer contains the .docx binary — write to file or send as attachment
const fs = await import('node:fs');
fs.writeFileSync('output.docx', Buffer.from(buffer));

Daily Usage

Usage History

Date Input Pages Size Response Status

No documents generated yet.

Account

Email
Plan
Member since

Billing

Current plan
Free
Free
$0/mo

For testing and small workflows

  • ✓ 50 docs / month
  • ✓ All input formats
  • ✕ Watermark included
Starter
$9/mo

For freelancers and solo automators

  • ✓ 200 docs / month
  • ✓ No watermark
  • ✓ Email support
  • Overage: $0.05 / doc
Popular
Pro
$29/mo

For agencies and growing teams

  • ✓ 1,000 docs / month
  • ✓ No watermark
  • ✓ Custom templates
  • ✓ Priority support
  • Overage: $0.03 / doc
Agency
$59/mo

For multi-client operations

  • ✓ 3,000 docs / month
  • ✓ Multiple domains
  • ✓ Webhooks
  • Overage: $0.02 / doc

Welcome to DocxAPI

Set up your account in 30 seconds. This helps us optimize your documents.

Step 1 of 3 — About you
Step 2 of 3 — Document settings
Used for hyphenation and date formatting in generated documents.
Step 3 of 3 — How you'll use it

Create new API key

Each key should be associated with a specific domain or application.

Comma-separated. Supports wildcards: *.example.com

API key created

Copy it now — you won't be able to see it again.