Questions
curl -X POST \
-H "Authorization: Bearer your_api_key_here" \
-H "Content-Type: application/json" \
-d '{"query": "What is the main conclusion?", "documentId": "abc123"}' \
https://api.pagepeek.com/v1/questions/ask{
"question": "What is the main conclusion?",
"answer": "The main conclusion is that...",
"documentId": "abc123"
}curl -X GET \
-H "Authorization: Bearer your_api_key_here" \
https://api.pagepeek.com/v1/questions/history[
{
"question": "What is the main conclusion?",
"answer": "The main conclusion is that...",
"documentId": "abc123",
"timestamp": "2023-10-01T12:00:00Z"
},
// ...other questions
]Last updated