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

1

Total users

0

Monthly active users

2 days 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
conversionTypestringpdf_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.
splitModestringsingle_pagessingle_pages or custom_ranges
splitRangesstring""Page ranges like 1-3, 4-6, 7-10
imageFormatstringpngpng, jpg, or tiff
imageDpiinteger200DPI resolution (72–600)
outputFileNamestringautoCustom base name for outputs
proxyConfigurationobjectApify 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
}