FileVerbs API Documentation - Document Conversions

Document Conversions

Document Conversions

The FileVerbs PDF API provides comprehensive support for converting PDFs into various document formats, including DOC, DOCX, Excel, and others. Below are the available document conversion options and their respective API request formats.

Available Document Conversions

Convert PDF to DOC

Convert PDF into editable DOC format.

Request Example (JSON):

{
    "action": "pdftodoc",
    "parameters": {
        "fileIds": ["66b357061b7f9c2032d6d70f"]
    }
}

Convert PDF to DOCX

Convert PDF into DOCX format for modern word processors.

Request Example (JSON):

{
    "action": "pdftodocx",
    "parameters": {
        "fileIds": ["66b357061b7f9c2032d6d70f"]
    }
}

Convert PDF to Excel (XLSX)

Convert PDF into Excel spreadsheets (XLSX format).

Request Example (JSON):

{
    "action": "pdftoxlsx",
    "parameters": {
        "fileIds": ["66b357061b7f9c2032d6d70f"]
    }
}

Convert PDF to Excel (XLS)

Convert PDF into legacy Excel format (XLS).

Request Example (JSON):

{
    "action": "pdftoxls",
    "parameters": {
        "fileIds": ["66b357061b7f9c2032d6d70f"]
    }
}

Convert PDF to a Single Excel Sheet

Convert PDF content into a single Excel sheet.

Request Example (JSON):

{
    "action": "pdftosinglesheet",
    "parameters": {
        "fileIds": ["66b357061b7f9c2032d6d70f"]
    }
}

Convert PDF to PowerPoint (PPTX)

Convert PDF into PowerPoint (PPTX) presentations.

Request Example (JSON):

{
    "action": "PdfToPowerPoint",
    "parameters": {
        "fileIds": ["66b357061b7f9c2032d6d70f"]
    }
}

Convert PDF to CSV

Convert PDF into CSV (Comma-Separated Values) for data analysis.

Request Example (JSON):

{
    "action": "PdfTocsv",
    "parameters": {
        "fileIds": ["66b7803a0b66fb6d22bef9a9"]
    }
}

Convert PDF to ODS

Convert PDF into OpenDocument Spreadsheet (ODS).

Request Example (JSON):

{
    "action": "PdfToods",
    "parameters": {
        "fileIds": ["66b7803a0b66fb6d22bef9a9"]
    }
}

Convert PDF to XML Spreadsheet

Convert PDF into XML Spreadsheet format.

Request Example (JSON):

{
    "action": "PdfToXmlSpreadsheet",
    "parameters": {
        "fileIds": ["66b7803a0b66fb6d22bef9a9"]
    }
}

Convert PDF to Plain Text

Extract plain text from PDF files.

Request Example (JSON):

{
    "action": "PdfToText",
    "parameters": {
        "fileIds": ["66b357061b7f9c2032d6d70f"]
    }
}

Convert PDF to LaTeX

Convert PDF into LaTeX format for scientific documents.

Request Example (JSON):

{
    "action": "PdfToLatex",
    "parameters": {
        "fileIds": ["66b357061b7f9c2032d6d70f"]
    }
}

Convert PDF to XPS

Convert PDF into XPS (XML Paper Specification).

Request Example (JSON):

{
    "action": "PdfToXps",
    "parameters": {
        "fileIds": ["66b357061b7f9c2032d6d70f"]
    }
}