List all your knowledge collections
Every collection in your organisation, archived ones included, newest first, in a single unpaged response. Any role in the organisation can list them.
GET
/
knowledge
/
collections
curl --request GET "$MITHUNAI_URL/arukz/api/v1/knowledge/collections" \
--header "Authorization: Bearer $MITHUNAI_API_KEY"
import os, requests
response = requests.get(
f"{os.environ['MITHUNAI_URL']}/arukz/api/v1/knowledge/collections",
headers={"Authorization": f"Bearer {os.environ['MITHUNAI_API_KEY']}"},
timeout=60,
)
response.raise_for_status()
print(response.json())
const response = await fetch(`${process.env.MITHUNAI_URL}/arukz/api/v1/knowledge/collections`, {
headers: { Authorization: `Bearer ${process.env.MITHUNAI_API_KEY}` },
})
console.log(await response.json())
{
"data": [
{
"id": "0b6f2c14-8a3d-4e91-9c77-2f5b1d0a4e88",
"name": "Product documentation",
"description": "Public docs and API reference",
"status": "active",
"embedding_model": "text-embedding-3-small",
"embedding_dimensions": 1536,
"created_at": "2026-09-24T10:15:02.418331",
"updated_at": "2026-09-24T10:15:02.418331"
},
{
"id": "c41e9a07-2d6b-4f85-b3a1-8e0f7c5d2b96",
"name": "Legacy handbook",
"description": "",
"status": "archived",
"embedding_model": "text-embedding-3-small",
"embedding_dimensions": 1536,
"created_at": "2026-08-11T08:02:47.104920",
"updated_at": "2026-09-20T16:40:11.772603"
}
]
}
Returns every collection in your organization, archived ones included, in a single response. This endpoint is not paged and takes no query parameters.
Any role in the organization can list collections.
Response
object[]
required
Collections, newest first.
Show properties
Show properties
string
required
Collection ID (a UUID).
string
required
Display name.
string
required
Description. Empty string when none was set.
string
required
active or archived. An archived collection refuses ingestion and stays readable.string
required
Embedding model, fixed at creation.
integer
required
Vector width, fixed at creation.
string
required
ISO 8601 timestamp, in UTC.
string
required
ISO 8601 timestamp, in UTC.
curl --request GET "$MITHUNAI_URL/arukz/api/v1/knowledge/collections" \
--header "Authorization: Bearer $MITHUNAI_API_KEY"
import os, requests
response = requests.get(
f"{os.environ['MITHUNAI_URL']}/arukz/api/v1/knowledge/collections",
headers={"Authorization": f"Bearer {os.environ['MITHUNAI_API_KEY']}"},
timeout=60,
)
response.raise_for_status()
print(response.json())
const response = await fetch(`${process.env.MITHUNAI_URL}/arukz/api/v1/knowledge/collections`, {
headers: { Authorization: `Bearer ${process.env.MITHUNAI_API_KEY}` },
})
console.log(await response.json())
{
"data": [
{
"id": "0b6f2c14-8a3d-4e91-9c77-2f5b1d0a4e88",
"name": "Product documentation",
"description": "Public docs and API reference",
"status": "active",
"embedding_model": "text-embedding-3-small",
"embedding_dimensions": 1536,
"created_at": "2026-09-24T10:15:02.418331",
"updated_at": "2026-09-24T10:15:02.418331"
},
{
"id": "c41e9a07-2d6b-4f85-b3a1-8e0f7c5d2b96",
"name": "Legacy handbook",
"description": "",
"status": "archived",
"embedding_model": "text-embedding-3-small",
"embedding_dimensions": 1536,
"created_at": "2026-08-11T08:02:47.104920",
"updated_at": "2026-09-20T16:40:11.772603"
}
]
}
Last modified on September 26, 2026
⌘I
curl --request GET "$MITHUNAI_URL/arukz/api/v1/knowledge/collections" \
--header "Authorization: Bearer $MITHUNAI_API_KEY"
import os, requests
response = requests.get(
f"{os.environ['MITHUNAI_URL']}/arukz/api/v1/knowledge/collections",
headers={"Authorization": f"Bearer {os.environ['MITHUNAI_API_KEY']}"},
timeout=60,
)
response.raise_for_status()
print(response.json())
const response = await fetch(`${process.env.MITHUNAI_URL}/arukz/api/v1/knowledge/collections`, {
headers: { Authorization: `Bearer ${process.env.MITHUNAI_API_KEY}` },
})
console.log(await response.json())
{
"data": [
{
"id": "0b6f2c14-8a3d-4e91-9c77-2f5b1d0a4e88",
"name": "Product documentation",
"description": "Public docs and API reference",
"status": "active",
"embedding_model": "text-embedding-3-small",
"embedding_dimensions": 1536,
"created_at": "2026-09-24T10:15:02.418331",
"updated_at": "2026-09-24T10:15:02.418331"
},
{
"id": "c41e9a07-2d6b-4f85-b3a1-8e0f7c5d2b96",
"name": "Legacy handbook",
"description": "",
"status": "archived",
"embedding_model": "text-embedding-3-small",
"embedding_dimensions": 1536,
"created_at": "2026-08-11T08:02:47.104920",
"updated_at": "2026-09-20T16:40:11.772603"
}
]
}