Skip to main content
GET /openapi/memorylake/api/v1/projects/{id}/documents/{documentId}
Returns the details of a single document, including file name and processing status.

Path Parameters

id
string
required
Project ID
documentId
string
required
Project document ID
curl -X GET 'https://app.memorylake.ai/openapi/memorylake/api/v1/projects/proj-a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6/documents/doc-1234567890abcdef' \
  -H 'Authorization: Bearer sk_xxxxxx'

Response

data
object
{
  "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"
  }
}