PagePeek Document Viewer
Interactive Viewing
// Initializing the PagePeek Document Viewer
const viewer = new PagePeek.Viewer('#document-viewer-container', {
documentId: 'abc123'
});
// Navigating to a specific page
viewer.goToPage(5);Document Analysis
// Requesting document analysis
fetch('https://api.pagepeek.com/v1/documents/abc123/analyze', {
method: 'GET',
headers: {
'Authorization': 'Bearer your_api_key_here'
}
})
.then(response => response.json())
.then(data => console.log(data));Text Summarization
Question & Answer Interface
Annotations and Highlights
Formula Recognition
Table Extraction
Sidebar Navigation
Search Functionality
Document Sharing and Collaboration
User Customization
Last updated