Server-side extraction
Inspect completed form data
Read the bundled completed vendor form directly on the server and inspect its fields as JSON.
Ready to tryUse the controls above to interact with this demo.
What this demonstrates
Read completed PDF forms without a viewer
Completed AcroForm values can be extracted directly from PDF bytes on the server. This is useful for intake pipelines, validation services, and archiving workflows that do not need to render the document.
The structured result includes each field's identity, type, value, and PDF-specific properties provided by the form-field object.
API used
Forms.GetAcroFormFields
How it works
The endpoint passes the completed PDF file to Forms.GetAcroFormFields and serializes the returned form-field objects as indented JSON.
Source files
See the implementation
The complete demo is encapsulated in Demos/Pdf/FormsProcessing/FormDataExtraction.