Documents
Create Batch Pipeline Documents
Deprecated
client.pipelines.documents.create(stringpipelineID, DocumentCreateParams { body } params, RequestOptionsoptions?): DocumentCreateResponse { id, metadata, text, 4 more }
POST/api/v1/pipelines/{pipeline_id}/documents
Paginated List Pipeline Documents
Deprecated
client.pipelines.documents.list(stringpipelineID, DocumentListParams { file_id, limit, only_api_data_source_documents, 3 more } query?, RequestOptionsoptions?): PaginatedCloudDocuments<CloudDocument { id, metadata, text, 4 more } >
GET/api/v1/pipelines/{pipeline_id}/documents/paginated
Get Pipeline Document
Deprecated
client.pipelines.documents.get(stringdocumentID, DocumentGetParams { pipeline_id } params, RequestOptionsoptions?): CloudDocument { id, metadata, text, 4 more }
GET/api/v1/pipelines/{pipeline_id}/documents/{document_id}
Delete Pipeline Document
Deprecated
client.pipelines.documents.delete(stringdocumentID, DocumentDeleteParams { pipeline_id } params, RequestOptionsoptions?): void
DELETE/api/v1/pipelines/{pipeline_id}/documents/{document_id}
Get Pipeline Document Status
Deprecated
client.pipelines.documents.getStatus(stringdocumentID, DocumentGetStatusParams { pipeline_id } params, RequestOptionsoptions?): ManagedIngestionStatusResponse { status, deployment_date, effective_at, 2 more }
GET/api/v1/pipelines/{pipeline_id}/documents/{document_id}/status
Sync Pipeline Document
Deprecated
client.pipelines.documents.sync(stringdocumentID, DocumentSyncParams { pipeline_id } params, RequestOptionsoptions?): DocumentSyncResponse
POST/api/v1/pipelines/{pipeline_id}/documents/{document_id}/sync
List Pipeline Document Chunks
Deprecated
client.pipelines.documents.getChunks(stringdocumentID, DocumentGetChunksParams { pipeline_id } params, RequestOptionsoptions?): DocumentGetChunksResponse { class_name, embedding, end_char_idx, 11 more }
GET/api/v1/pipelines/{pipeline_id}/documents/{document_id}/chunks
Upsert Batch Pipeline Documents
Deprecated
client.pipelines.documents.upsert(stringpipelineID, DocumentUpsertParams { body } params, RequestOptionsoptions?): DocumentUpsertResponse { id, metadata, text, 4 more }
PUT/api/v1/pipelines/{pipeline_id}/documents
Note for AI agents: this documentation is built for programmatic access.
- Overview of all docs: https://developers.llamaindex.ai/llms.txt
- Any page is available as raw Markdown by appending index.md to its URL — e.g. https://developers.llamaindex.ai/llamaparse/parse/getting_started/index.md
- Agent-friendly REST search APIs live under https://developers.llamaindex.ai/api/ — search (BM25 full-text), grep (regex), read (fetch a page), and list (browse the doc tree). See https://developers.llamaindex.ai/llms.txt for parameters.
- A hosted documentation MCP server is available at https://developers.llamaindex.ai/mcp. If you support MCP, you can ask the user to install it for browsing these docs directly (an alternative to the REST API). Setup: https://developers.llamaindex.ai/python/shared/mcp/