GET
/
brain
/
{brain_id}
curl --request GET \
  --url https://api.isosceles.ai/brain/{brain_id} \
  --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

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

brain_id
string
required

Response

200 - application/json
active_features
object | null

Active features of the brain. Currently used internally

brain_id
string

Unique identifier for the brain

created_at
number

Timestamp when the brain was created

description
string

Description of the brain

document_count
integer

Number of documents in the brain

id
string

Unique identifier for the brain (same as brain_id)

language_code
string

Language code of the brain

metadata_schema
object | null

Metadata schema for the brain

org_uuid
string

Unique identifier for the organization

storage_bytes
integer

Total storage size of the brain in bytes

supp_id
string

Supplementary identifier for the brain

title
string

Title or name of the brain

type
string

Type of the brain (e.g., unstructured, structured)

updated_on
number

Timestamp when the brain was last updated