Documentation Index
Fetch the complete documentation index at: https://docs.memorylake.ai/llms.txt
Use this file to discover all available pages before exploring further.
GET /openapi/memorylake/api/v1/projects/{id}/documents/{documentId}
Returns the details of a single document, including file name and processing status.
Path Parameters
curl -X GET 'https://app.memorylake.ai/openapi/memorylake/api/v1/projects/proj-a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6/documents/doc-1234567890abcdef' \
-H 'Authorization: Bearer sk_xxxxxx'
Response
Processing status: pending, running, okay, or error
{
"success": true,
"data": {
"id": "doc-1234567890abcdef",
"name": "report.pdf",
"status": "okay",
"drive_item_id": "sc-4d2beb72e9af4b01:inode-926ead7cac284666",
"created_at": "2024-01-15T10:30:00Z"
}
}