Mixpeek Logo
    Schedule Demo
    PDF

    Form Field Extraction

    Identify and extract form fields and values from PDF documents

    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

    Types of form fields to extract. Default: text,checkbox,radio,dropdown

    Whether to extract field values. Default: true

    Output

    {
    "form_fields": [
    {
    "label": "Full Name",
    "value": "John Smith",
    "type": "text",
    "bbox": [
    150,
    220,
    450,
    250
    ]
    },
    {
    "label": "Email",
    "value": "[email protected]",
    "type": "email",
    "bbox": [
    150,
    270,
    450,
    300
    ]
    },
    {
    "label": "Date of Birth",
    "value": "1985-04-12",
    "type": "date",
    "bbox": [
    150,
    320,
    350,
    350
    ]
    }
    ],
    "checkboxes": [
    {
    "label": "Subscribe to newsletter",
    "checked": true,
    "bbox": [
    150,
    400,
    250,
    420
    ]
    }
    ],
    "form_type": "registration"
    }