Drop an Office document into the viewer to convert and preview it as a PDF in your browser, or send a multipart/form-data POST request to /convert.

Drag and drop an Office document here

API access

Need an API key? Contact codeuctivity@gmail.com.

curl example

# Optional: add -H "X-API-Key: your-api-key" to authenticate
curl -X POST "https://ods.codeuctivity.cloud/convert" \
  -F "file=@/absolute/path/to/document.docx" \
  -F "output=PDF" \
  --output document.pdf

PowerShell example

# Requires PowerShell 7+ (pwsh).
$form = @{
  file = Get-Item "C:\absolute\path\to\document.docx"
  output = "PDF"
}

# Optional: add -Headers @{ "X-API-Key" = "your-api-key" } to authenticate
Invoke-RestMethod -Uri "https://ods.codeuctivity.cloud/convert" -Method Post -Form $form -OutFile ".\document.pdf"

Supported input formats

Supported formats: