Follow these instructions to manage your data.

Upload Training Data

POST /v0/uploads

Upload your training data files. Supports multiple files and ZIP archives.

Request:

  • Content-Type: multipart/form-data
  • Body: Form data containing one or more files
curl -X POST https://api.plexe.ai/v0/uploads \
  -H "x-api-key: your_api_key_here" \
  -F "files=@your_data.csv" \
  -F "files=@additional_data.zip"

Response:

{
  "upload_id": "550e8400-e29b-41d4-a716-446655440000"
}

Delete Upload

DELETE /v0/uploads/{upload_id}

Remove previously uploaded training data. Call this after model creation or if you want to cancel the upload.

Path Parameters:

  • upload_id (required): The ID received from the upload endpoint