Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mind-e.co/docs/llms.txt

Use this file to discover all available pages before exploring further.

Check whether a document has finished processing (conversion, chunking, and embedding).

Endpoint

POST /convert-document/status

Authentication

Required.

Request body

documentId
string
required
The document ID to check.

Response

success
boolean
Whether the request was successful.
status
string
Processing status: processing, chunking, completed, or error.

Processing stages

StatusDescription
processingDocument is being converted to markdown
chunkingText is being split into chunks and embedded
completedDocument is ready — the agent can use it
errorProcessing failed

Example

curl -X POST https://api.mind-e.co/convert-document/status \
  -H "Authorization: Bearer sk_live_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{ "documentId": "doc-id-here" }'

Response

{
  "success": true,
  "status": "completed"
}