{ "opencollection": "1.0.0", "info": { "name": "LlamaCloud Documents API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Documents", "type": "folder" }, "items": [ { "info": { "name": "List files", "type": "http" }, "http": { "method": "GET", "url": "https://api.cloud.llamaindex.ai/api/v1/files", "params": [ { "name": "project_id", "value": "", "type": "query" } ] }, "docs": "List files" }, { "info": { "name": "Upload a file", "type": "http" }, "http": { "method": "POST", "url": "https://api.cloud.llamaindex.ai/api/v1/files", "body": { "type": "multipart-form", "data": [ { "name": "upload_file", "type": "text", "value": "" } ] } }, "docs": "Uploads a file to LlamaCloud for use in pipelines or extraction." }, { "info": { "name": "List pipeline documents", "type": "http" }, "http": { "method": "GET", "url": "https://api.cloud.llamaindex.ai/api/v1/pipelines/:pipeline_id/documents", "params": [ { "name": "pipeline_id", "value": "", "type": "path" } ] }, "docs": "List pipeline documents" }, { "info": { "name": "Add documents to a pipeline", "type": "http" }, "http": { "method": "POST", "url": "https://api.cloud.llamaindex.ai/api/v1/pipelines/:pipeline_id/documents", "params": [ { "name": "pipeline_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Adds raw documents directly to a pipeline's managed index." } ] } ], "bundled": true }