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

# List knowledge items

> List the project's knowledge base items: text notes, crawled links, uploaded PDFs, agent memories and UI icons. Returns summaries without content; fetch a single item for its full content.



## OpenAPI

````yaml /api-reference/api.json get /v1/knowledge
openapi: 3.0.0
info:
  title: QA.tech API
  version: 1.0.0
  contact:
    name: QA.tech
    url: https://qa.tech
    email: support@qa.tech
  description: API for triggering and managing AI-powered test runs
servers:
  - url: https://api.qa.tech
    description: Production
    variables: {}
security:
  - BearerAuth: []
tags:
  - name: Runs
  - name: Infrastructure
  - name: Test Cases
  - name: Application Builds
  - name: Status badge
  - name: Remote Tunnels
  - name: Chat
  - name: Applications
  - name: Features
  - name: Metrics
  - name: Release Checks
  - name: Projects
  - name: Knowledge
  - name: Rules
paths:
  /v1/knowledge:
    get:
      tags:
        - Knowledge
      summary: List knowledge items
      description: >-
        List the project's knowledge base items: text notes, crawled links,
        uploaded PDFs, agent memories and UI icons. Returns summaries without
        content; fetch a single item for its full content.
      operationId: ListKnowledgeItems
      parameters:
        - name: query
          in: query
          required: true
          schema:
            $ref: '#/components/schemas/ListKnowledgeItemsQuery'
          explode: false
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListKnowledgeItemsResponse'
components:
  schemas:
    ListKnowledgeItemsQuery:
      type: object
      properties:
        type:
          allOf:
            - $ref: '#/components/schemas/KnowledgeItemType'
          description: Filter by knowledge item type
        projectShortId:
          allOf:
            - $ref: '#/components/schemas/ProjectShortId'
          description: >-
            Target a specific project by its prefixed short ID
            (proj-slug_shortId or proj_shortId), as returned by the projects
            API. Required for organization-scoped API keys; project-scoped keys
            may only pass their own project's short ID.
    ListKnowledgeItemsResponse:
      type: object
      required:
        - items
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/KnowledgeItemSummary'
    KnowledgeItemType:
      type: string
      enum:
        - pdf
        - link
        - text
        - icon
        - memory
      description: >-
        All knowledge item types. `pdf` and `icon` items are managed in the
        dashboard.
    ProjectShortId:
      type: string
      pattern: ^proj(-.+_.+|_.+)$
    KnowledgeItemSummary:
      type: object
      required:
        - id
        - type
        - title
        - url
        - status
        - createdAt
        - updatedAt
      properties:
        id:
          type: string
        type:
          $ref: '#/components/schemas/KnowledgeItemType'
        title:
          type: string
        url:
          type: string
          nullable: true
          description: Source URL for link items, null for other types
        status:
          type: string
          description: Ingestion status, e.g. PENDING, PROCESSING, COMPLETED or FAILED
        createdAt:
          type: string
        updatedAt:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: Bearer

````