Document Converter avatar

Document Converter

Pricing

from $10.00 / 1,000 results

Go to Apify Store
Document Converter

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

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

3

Total users

3

Monthly active users

19 hours ago

Last modified

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

OperationInputOutput
PDF β†’ Word.pdf.docx
Word β†’ PDF.docx.pdf
PDF β†’ Text.pdf.txt
Merge PDFsMultiple .pdfSingle .pdf
Split PDF.pdfMultiple .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

FieldTypeRequiredDefaultDescription
conversionTypestringβœ…pdf_to_wordOne of: pdf_to_word, word_to_pdf, pdf_to_text, merge_pdfs, split_pdf, pdf_to_images
fileUrlsstring[]βœ…β€”Direct download URLs. Merge uses all; others use the first.
splitModestringβ€”single_pagessingle_pages or custom_ranges
splitRangesstringβ€”""Page ranges like 1-3, 4-6, 7-10
imageFormatstringβ€”pngpng, jpg, or tiff
imageDpiintegerβ€”200DPI resolution (72–600)
outputFileNamestringβ€”autoCustom base name for outputs
proxyConfigurationobjectβ€”β€”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
}