{ "opencollection": "1.0.0", "info": { "name": "Extend Batch Files API", "version": "2026-02-09" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Files", "type": "folder" }, "items": [ { "info": { "name": "Upload a file", "type": "http" }, "http": { "method": "POST", "url": "https://api.extend.ai/files/upload", "headers": [ { "name": "x-extend-api-version", "value": "" } ], "params": [ { "name": "convertToPdf", "value": "", "type": "query", "description": "Convert supported inputs (images, Word, PowerPoint, Excel, HTML) to PDF." } ], "body": { "type": "multipart-form", "data": [ { "name": "file", "type": "text", "value": "" }, { "name": "password", "type": "text", "value": "" } ] } }, "docs": "Upload a document to Extend and receive a file ID that can be referenced by processors and workflows. Supports optional conversion to PDF and passwords for protected PDFs." }, { "info": { "name": "List files", "type": "http" }, "http": { "method": "GET", "url": "https://api.extend.ai/files", "headers": [ { "name": "x-extend-api-version", "value": "" } ], "params": [ { "name": "nextPageToken", "value": "", "type": "query" }, { "name": "maxPageSize", "value": "", "type": "query" } ] }, "docs": "List files" }, { "info": { "name": "Get a file", "type": "http" }, "http": { "method": "GET", "url": "https://api.extend.ai/files/:id", "headers": [ { "name": "x-extend-api-version", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Get a file" }, { "info": { "name": "Delete a file", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.extend.ai/files/:id", "headers": [ { "name": "x-extend-api-version", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Delete a file" } ] } ], "bundled": true }