{ "opencollection": "1.0.0", "info": { "name": "Biolevate Agent Extraction API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Extraction", "type": "folder" }, "items": [ { "info": { "name": "List extraction jobs", "type": "http" }, "http": { "method": "GET", "url": "/api/core/extraction/jobs", "params": [ { "name": "pageSize", "value": "", "type": "query", "description": "Page size" }, { "name": "page", "value": "", "type": "query", "description": "Page number" }, { "name": "sortProperty", "value": "", "type": "query", "description": "Sort property" }, { "name": "sortOrder", "value": "", "type": "query", "description": "Sort order" } ] }, "docs": "Returns a paginated list of extraction jobs for the current user" }, { "info": { "name": "Create extraction job", "type": "http" }, "http": { "method": "POST", "url": "/api/core/extraction/jobs", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new metadata extraction job on the specified files" }, { "info": { "name": "Get extraction job", "type": "http" }, "http": { "method": "GET", "url": "/api/core/extraction/jobs/:jobId", "params": [ { "name": "jobId", "value": "", "type": "path", "description": "The job Id" } ] }, "docs": "Returns a single extraction job by its ID" }, { "info": { "name": "Get extraction job outputs", "type": "http" }, "http": { "method": "GET", "url": "/api/core/extraction/jobs/:jobId/results", "params": [ { "name": "jobId", "value": "", "type": "path", "description": "The job Id" } ] }, "docs": "Returns the extracted metadata results from the job" }, { "info": { "name": "Get extraction job inputs", "type": "http" }, "http": { "method": "GET", "url": "/api/core/extraction/jobs/:jobId/inputs", "params": [ { "name": "jobId", "value": "", "type": "path", "description": "The job Id" } ] }, "docs": "Returns the input files and meta configurations used for the extraction job" }, { "info": { "name": "Get extraction job annotations", "type": "http" }, "http": { "method": "GET", "url": "/api/core/extraction/jobs/:jobId/annotations", "params": [ { "name": "jobId", "value": "", "type": "path", "description": "The job Id" } ] }, "docs": "Returns the document annotations generated by the extraction job" } ] } ], "bundled": true }