This API endpoint lists all created Minds using the GET method.
Body
None.
Response
Timestamp of when the Mind was created.
List of data sources connected to the Mind.
The name of the model associated with the Mind.
The unique name of the Mind.
Optional parameters used when configuring the Mind.
The provider used for the Mind (e.g., openai).
Timestamp of the last update to the Mind.
Authorization
A valid API key must be passed in the Authorization header:
Authorization: Bearer MINDS_API_KEY
Generate your API key here.
Path Parameters
None.
curl --request GET \
--url 'https://mdb.ai/api/projects/mindsdb/minds' \
--header 'Authorization: Bearer MINDS_API_KEY'
[
{
"created_at": "Wed, 07 Aug 2024 10:50:31 GMT",
"datasources": [
"datasource_name"
],
"model_name": "gpt-4o",
"name": "mind_name",
"parameters": {},
"provider": "openai",
"updated_at": "Wed, 07 Aug 2024 16:43:21 GMT"
}
]