/
/MindsDB API
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 53m ago · Updated 1mo ago
  • getReturns a list of database names.
  • postCreates a new database connection.
  • getGets info about existing database.
  • putUpdates an existing database connection.
  • deleteDeletes an existing database.
  • getReturns a list of projects.
  • getGet a project by name.
  • getReturns a list of models.
  • postThis endpoint trains a new ML Model.
  • getGets info about specific model.
  • deleteDeletes an existing model.
  • postThis endpoint fetches predictions from the model.
  • getDescribe a model
  • getList all views in a project
  • postThis endpoint creates a view which is a result-set of the SELECT statement.
  • getSELECT from VIEW
  • putUpdates an existing view.
  • deleteDeletes an existing view.
  • getReturns a list of tables in a database.
  • postThis endpoint creates a new table with the predictions result-set.
  • getSELECT from Table
  • deleteDeletes an existing table.

Describe a model

Gets the attributes of a specific model.

get/api/projects/{projectName}/models/{modelName}/describe

Path parameters

projectNamestring required

The name of the project

modelNamestring required

The name of the model

Request body

attributestring

Attribute of the model to describe. See our DESCRIBE documentation. E.g. info, features, model

Response

A JSON object with model informations

object required

Changes