Brain
Get All Brains
GET
/
brain
curl --request GET \
--url https://api.isosceles.ai/brain/ \
--header 'Authorization: Basic <encoded-value>'
{
"active_features": null,
"brain_id": "1f1d7a6a-e45b-4974-a0ba-98935650cb9c",
"created_on": 1716137128.912637,
"description": "",
"document_count": 0,
"id": "1f1d7a6a-e45b-4974-a0ba-98935650cb9c",
"language_code": "en",
"metadata_schema": null,
"org_uuid": "3bef451d-5bbd-4a6e-b504-6c491c3889fe",
"storage_bytes": 0,
"supp_id": "",
"title": "Test Updated Brain",
"type": "unstructured",
"updated_on": 1716137146
}
Authorizations
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Response
200 - application/json
The response is of type object[]
.
curl --request GET \
--url https://api.isosceles.ai/brain/ \
--header 'Authorization: Basic <encoded-value>'
{
"active_features": null,
"brain_id": "1f1d7a6a-e45b-4974-a0ba-98935650cb9c",
"created_on": 1716137128.912637,
"description": "",
"document_count": 0,
"id": "1f1d7a6a-e45b-4974-a0ba-98935650cb9c",
"language_code": "en",
"metadata_schema": null,
"org_uuid": "3bef451d-5bbd-4a6e-b504-6c491c3889fe",
"storage_bytes": 0,
"supp_id": "",
"title": "Test Updated Brain",
"type": "unstructured",
"updated_on": 1716137146
}
Assistant
Responses are generated using AI and may contain mistakes.