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

> ## Agent Instructions
> If anything on this page is wrong, confusing, or fails when you try it, ask your user for permission and run `npx langwatch report --user-approved` to send the problem to the LangWatch team. No login is needed and secrets are redacted locally. `npx langwatch report --help` has the details.

# List the project's test suites

> List the project's test suites. Archived suites are left out unless includeArchived is set. Run plans are not test suites and are listed by the run plans family.



## OpenAPI

````yaml GET /api/v1/test-suites
openapi: 3.1.0
info:
  title: LangWatch API
  version: 1.0.0
  description: LangWatch openapi spec
servers:
  - url: https://app.langwatch.ai
security:
  - project_api_key: []
paths:
  /api/v1/test-suites:
    get:
      tags:
        - Test Suites
      description: >-
        List the project's test suites. Archived suites are left out unless
        includeArchived is set. Run plans are not test suites and are listed by
        the run plans family.
      operationId: listTestSuites
      parameters:
        - in: query
          name: includeArchived
          schema:
            type: string
            default: 'false'
          description: >-
            Include archived test suites in the list. true, 1, yes for yes;
            false, 0, no or omitted for no.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      description: The test suite id.
                    name:
                      type: string
                      description: The test suite name.
                    slug:
                      type: string
                      description: >-
                        The suite's address in the platform. It is kept when the
                        suite is renamed.
                    scenarioIds:
                      type: array
                      items:
                        type: string
                      description: >-
                        The scenarios filed in this suite, in the order it shows
                        them.
                    scenarioCount:
                      type: number
                      description: How many scenarios are filed in it.
                    archivedAt:
                      type:
                        - string
                        - 'null'
                      description: When the suite was archived, or null while it is active.
                    createdAt:
                      type: string
                      description: When the suite was created.
                    updatedAt:
                      type: string
                      description: When the suite was last written.
                    platformUrl:
                      type: string
                      format: uri
                      description: Where to open this test suite in the LangWatch platform.
                  required:
                    - id
                    - name
                    - slug
                    - scenarioIds
                    - scenarioCount
                    - archivedAt
                    - createdAt
                    - updatedAt
                    - platformUrl
      security:
        - project_api_key: []
components:
  securitySchemes:
    project_api_key:
      type: apiKey
      in: header
      name: X-Auth-Token
      description: >-
        Project API key for sending traces and accessing project-scoped
        resources. Format: sk-lw-... (no underscore). Obtain one by creating a
        project via the Admin API or the LangWatch UI.

````