Skip to main content
The Models API provides endpoints for creating, managing, and using machine learning models on the Plexe Platform.

Models Endpoints

List Models

Headers

Retrieves a list of all models in your account.

Query Parameters

Response

Get Model

Headers

Retrieves detailed information about a specific model.

Path Parameters

Response

Create Model

Headers

Initiates the process of building a new model. This is an asynchronous operation that returns a job ID for tracking progress.

Path Parameters

Request Body

Response

Deploy Model

Headers

Deploys a model, making it available for predictions. This is an asynchronous operation.

Path Parameters

Request Body

Response

Make Prediction

Headers

Makes a prediction using a deployed model.

Path Parameters

Request Body

Input data matching the model’s input schema. Example:

Response

Output data matching the model’s output schema. Example:

Get Model Status

Headers

Gets the current status of a specific model version.

Path Parameters

Response

Update Model

Headers

Updates metadata for an existing model.

Path Parameters

Request Body

Response

Delete Model

Headers

Deletes a model and its deployments.

Path Parameters

Response

Retrain Model

Headers

Initiates retraining of an existing model with new data or updated configuration.

Path Parameters

Request Body

Response

Get Build Logs

Headers

Retrieves build logs for model training processes.

Query Parameters

Response

Model Versions

List Model Versions

Headers

Lists all versions of a specific model.

Path Parameters

Response

Create Model Version

Headers

Creates a new version of an existing model. This is useful for iterative model improvement.

Path Parameters

Request Body

Response

Model Deployments

List Deployments

Headers

Lists all active deployments for a model.

Path Parameters

Response

Undeploy Model

Headers

Removes a specific deployment of a model.

Path Parameters

Response

Describe Model

Headers

Gets detailed information and metadata about a specific model version.

Path Parameters

Response

Batch Predictions

Batch Predictions

Headers

Makes batch predictions using a deployed model by sending an array of input data.

Path Parameters

Request Body

Array of input objects matching the model’s input schema. Example:

Response

Array of prediction results corresponding to each input:

Error Codes

For all API errors, the response will include details about the error and, where appropriate, suggestions for resolution.