Skip to main content
Manage documents after ingestion using the SDK.

List Documents

Retrieve paginated documents with filtering.
Response:

Parameters

ParameterTypeDefaultDescription
limitnumber50Items per page (max 200)
pagenumber1Page number
containerTagsstring[]Filter by tags
sortstringcreatedAtSort by createdAt or updatedAt
orderstringdescdesc (newest) or asc (oldest)

Get Document

Get a specific document with its processing status.

Processing Status

StatusDescription
queuedWaiting to process
extractingExtracting content (OCR, transcription)
chunkingBreaking into searchable pieces
embeddingCreating vector representations
doneReady for search
failedProcessing failed

Update Document

Update a document’s content or metadata. Content changes trigger full reprocessing; metadata-only changes (e.g. updating accepted, version) do not reindex.

Delete Documents

Permanently remove documents.
Deletes are permanent — no recovery.

Processing Queue

Check documents currently being processed.

Next Steps