/
/MindsDB API
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 1h 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.

Returns a list of tables in a database.

Gets metadata for all tables in a database.

get/api/databases/{databaseName}/tables

Path parameters

databaseNamestring required

The name of the database

Response

A JSON array of tables

namestring
typestring

Type of table (data | view)

Changes