Test PDF generation and extraction with real-time results and JSON metadata.
Upload a PDF file to extract structured JSON data
{
"success": true,
"filename": "document.pdf",
"data": {
"metadata": {
"title": "Document Title",
"pages": 5,
"author": "Author Name"
},
"content": {
"fullText": "Extracted text...",
"structure": {
"headings": ["Chapter 1", "Introduction"],
"paragraphs": ["Paragraph text..."],
"links": [{"text": "Link", "url": "..."}]
},
"statistics": {
"totalWords": 1250,
"readingTimeMinutes": 5
}
},
"extraction": {
"emails": ["email@example.com"],
"phoneNumbers": ["+1-555-0123"],
"dates": ["2024-01-15"]
}
}
}