Backend API Service
This service receives a Google Drive link, analyzes the content, and returns a summary and key points in JSON format.
Send a POST request to /api/summarize with a JSON body matching the request format below.
Request Format
{
"driveLink": "https://drive.google.com/file/d/your-file-id/view"
}Response Format
{
"status": "success",
"linkType": "pdf",
"data": {
"summary": "Ini adalah ringkasan singkat dari konten dokumen.",
"keyInformation": "Ini adalah poin-poin penting dan informasi penting yang diekstrak dari dokumen."
},
"note": "Analysis successful."
}