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

# Get Knowledge Base Usage

> Retrieve usage information for a knowledge base, including which call flows are using it.

## Headers

<ParamField header="x-api-key" type="string" required>
  API key used for authenticating requests to the API.
</ParamField>

<ParamField header="x-workspace-id" type="string" required>
  Workspace identifier for the API.
</ParamField>

## Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the knowledge base.
</ParamField>

## Response Fields

<ResponseField name="pathways" type="array">
  Array of call flows that are using this knowledge base.

  <ResponseField name="_id" type="string">
    Unique identifier of the call flow.
  </ResponseField>

  <ResponseField name="name" type="string">
    Name of the call flow.
  </ResponseField>
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "pathways": [
      {
        "_id": "665a1b2c3d4e5f6a7b8c9d0e",
        "name": "Customer Support Flow"
      },
      {
        "_id": "665a1b2c3d4e5f6a7b8c9d0f",
        "name": "Sales Inquiry Flow"
      }
    ]
  }
  ```
</ResponseExample>
