Parasail · Capability

Batch Files

Batch Files is a Naftiko capability published by Parasail, one of 6 capabilities the APIs.io network indexes for this provider.

Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Run with Naftiko

Capability Spec

batch-files.yaml Raw ↑
name: parasail-batch-files
description: |
  Upload, list, retrieve, download, and delete JSONL files used as input and output for
  Parasail batch inference jobs.
provider: parasail
api: parasail-batch-api
operations:
  - operationId: uploadFile
    method: POST
    path: /files
  - operationId: listFiles
    method: GET
    path: /files
  - operationId: getFile
    method: GET
    path: /files/{file_id}
  - operationId: getFileContent
    method: GET
    path: /files/{file_id}/content
  - operationId: deleteFile
    method: DELETE
    path: /files/{file_id}
inputs:
  - name: file
    required: true
  - name: purpose
    required: true
    description: 'batch'
outputs:
  - name: file
    description: File metadata or raw bytes.