GET
/
api
/
databases
/
{databaseName}
/
tables
/
{tableName}
curl --request GET \
  --url http://127.0.0.1:47334/api/databases/{databaseName}/tables/{tableName}
{
  "name": "<string>",
  "type": "<string>"
}

The REST API playground can currently only be used with MindsDB running locally at http://127.0.0.1:47334.

Path Parameters

databaseName
string
required

The name of the database

tableName
string
required

The name of the table

Response

200 - application/json
name
string
type
string

Type of table (data | view)