Document Converter
Pricing
from $10.00 / 1,000 results
Go to Apify Store

Document Converter
A tool that that converts documents between different formats. Upload files via URL and retrieve converted results from the key-value store.
Pricing
from $10.00 / 1,000 results
Rating
0.0
(0)
Developer
Jamshaid Arif
Maintained by Community
Actor stats
0
Bookmarked
1
Total users
0
Monthly active users
2 days ago
Last modified
Categories
Share
📄 Document Converter — Apify Actor
A serverless Apify actor that converts documents between formats. Upload files via URL, get converted results from the key-value store.
Supported Conversions
| Operation | Input | Output |
|---|---|---|
| PDF → Word | .pdf | .docx |
| Word → PDF | .docx | .pdf |
| PDF → Text | .pdf | .txt |
| Merge PDFs | Multiple .pdf | Single .pdf |
| Split PDF | .pdf | Multiple .pdf |
| PDF → Images | .pdf | .png / .jpg / .tiff per page |
Input Schema
{"conversionType": "pdf_to_word","fileUrls": ["https://example.com/document.pdf"],"splitMode": "single_pages","splitRanges": "1-3, 4-6","imageFormat": "png","imageDpi": 200,"outputFileName": "my_converted_file"}
Parameters
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
conversionType | string | ✅ | pdf_to_word | One of: pdf_to_word, word_to_pdf, pdf_to_text, merge_pdfs, split_pdf, pdf_to_images |
fileUrls | string[] | ✅ | — | Direct download URLs. Merge uses all; others use the first. |
splitMode | string | — | single_pages | single_pages or custom_ranges |
splitRanges | string | — | "" | Page ranges like 1-3, 4-6, 7-10 |
imageFormat | string | — | png | png, jpg, or tiff |
imageDpi | integer | — | 200 | DPI resolution (72–600) |
outputFileName | string | — | auto | Custom base name for outputs |
proxyConfiguration | object | — | — | Apify proxy settings |
Output
Converted files are saved to the default key-value store. Metadata is pushed to the default dataset:
{"conversionType": "pdf_to_word","sourceFiles": ["report.pdf"],"outputFile": "report_converted.docx","outputUrl": "https://api.apify.com/v2/key-value-stores/.../records/report_converted.docx","fileSizeBytes": 234567}