Table of Contents

Class Client

Namespace
Minds.SDK
Assembly
Minds.SDK.dll

The Client class provides access to MindsDB API functionalities. It manages the connection to the API, exposes interfaces for interacting with datasources and minds, and acts as a wrapper for the API calls.

public class Client
Inheritance
Client
Inherited Members

Constructors

Client(string, string)

Initializes a new instance of the Client class, which provides access to the MindsDB API, datasources, and minds.

public Client(string apiKey, string baseUrl = null)

Parameters

apiKey string

The API key required for authentication with the MindsDB API.

baseUrl string

The base URL of the MindsDB API (optional).

Properties

Api

Gets the RestAPI instance that manages API calls to MindsDB.

public RestAPI Api { get; }

Property Value

RestAPI

Datasources

Gets the Datasources manager that handles datasource-related operations.

public Datasources Datasources { get; }

Property Value

Datasources

Minds

Gets the Minds manager that handles mind-related operations.

public Minds Minds { get; }

Property Value

Minds