Mixpeek Logo
    Schedule Demo
    PDF

    PDF Table Extraction

    Convert tables in PDFs to structured data formats

    Note: This playground provides simulated output to showcase functionality. No input data is processed or stored on our servers. Use this demo to explore the feature extractor's capabilities before integrating it into your application.

    Input

    Enter a URL to a pdf file

    Drag and drop a pdf file here, or click to browse

    Minimum confidence threshold for table detection. Default: 0.8

    Whether to merge cells with similar content. Default: true

    Output

    {
    "tables": [
    {
    "page": 3,
    "bbox": [
    120,
    350,
    550,
    620
    ],
    "rows": 5,
    "columns": 4,
    "headers": [
    "Product",
    "Q1",
    "Q2",
    "Q3"
    ],
    "data": [
    [
    "Widgets",
    "1,234",
    "1,456",
    "1,789"
    ],
    [
    "Gadgets",
    "987",
    "1,023",
    "1,145"
    ]
    ]
    }
    ],
    "total_tables": 1,
    "export_formats": [
    "csv",
    "json",
    "excel"
    ]
    }