> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mithunai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 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.

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

<ResponseField name="data" type="object[]" required>
  Collections, newest first.

  <Expandable title="properties">
    <ResponseField name="id" type="string" required>
      Collection ID (a UUID).
    </ResponseField>

    <ResponseField name="name" type="string" required>
      Display name.
    </ResponseField>

    <ResponseField name="description" type="string" required>
      Description. Empty string when none was set.
    </ResponseField>

    <ResponseField name="status" type="string" required>
      `active` or `archived`. An archived collection refuses ingestion and stays readable.
    </ResponseField>

    <ResponseField name="embedding_model" type="string" required>
      Embedding model, fixed at creation.
    </ResponseField>

    <ResponseField name="embedding_dimensions" type="integer" required>
      Vector width, fixed at creation.
    </ResponseField>

    <ResponseField name="created_at" type="string" required>
      ISO 8601 timestamp, in UTC.
    </ResponseField>

    <ResponseField name="updated_at" type="string" required>
      ISO 8601 timestamp, in UTC.
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={"theme":{"light":"github-light","dark":"github-dark"}}
  curl --request GET "$MITHUNAI_URL/arukz/api/v1/knowledge/collections" \
    --header "Authorization: Bearer $MITHUNAI_API_KEY"
  ```

  ```python Python theme={"theme":{"light":"github-light","dark":"github-dark"}}
  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())
  ```

  ```javascript JavaScript theme={"theme":{"light":"github-light","dark":"github-dark"}}
  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())
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={"theme":{"light":"github-light","dark":"github-dark"}}
  {
    "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"
      }
    ]
  }
  ```
</ResponseExample>
