Retrieve document contents
Last updated
Last updated
document_id
integer
Required. The ID of the document to retrieve contents for.
start_chunk
integer
The starting chunk index. Default is 0.
end_chunk
integer
The ending chunk index. Default is start_chunk + 20.
404
Document not found
500
Internal server error
For large documents, the content is split into chunks. You can retrieve the full document by making multiple requests:
Make an initial request with start_chunk=0
Use the returned end_chunk
value as the start_chunk
for the next request
Continue until you have retrieved all chunks
This endpoint returns the raw text content of a document, allowing you to access the full information for detailed processing or analysis.
Returns the content of the document with the specified ID, along with the index of the latest retrieved chunk. Each call fetches up to 20 chunks. To get more, use the end_chunk value from the response as the start_chunk for the next call.
The ID of the document to retrieve contents for.
Indicate the starting chunk that you want to retrieve. If not specified, the default value is 0.
Indicate the ending chunk that you want to retrieve. If not specified, the default value is start_chunk + 20.