Documents
curl -X POST \
-H "Authorization: Bearer your_api_key_here" \
-F "[email protected]" \
https://api.pagepeek.com/v1/documents/upload{
"documentId": "abc123",
"title": "Sample Document",
"size": 345678,
"status": "uploaded",
"createdAt": "2023-10-01T12:00:00Z",
"updatedAt": "2023-10-01T12:00:00Z"
}curl -X GET \
-H "Authorization: Bearer your_api_key_here" \
https://api.pagepeek.com/v1/documents/abc123/analysis{
"documentId": "abc123",
"keywords": ["keyword1", "keyword2"],
"summary": "This document discusses..."
}Last updated