Datasets are created via
POST /generate or by uploading files directly. To start training, a dataset must be in the ready state.List all datasets
GET /felix/datasets
Returns all datasets associated with your account.
boolean
true on success.number
Total number of datasets returned.
object[]
Array of dataset objects.
Get dataset versions and details
GET /felix/datasets/:name
Returns version history and metadata for a specific dataset.
Path parameters
string
required
The dataset name exactly as it appears in your account.
boolean
true on success.number
Number of versions returned.
object[]
List of dataset versions, most recent first.
Delete a dataset
DELETE /felix/datasets/:name
Permanently deletes a dataset and all its versions. This action cannot be undone.
Path parameters
string
required
The name of the dataset to delete.
200 with an empty body on success.