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

> Lists the projects in the organization the API key belongs to. Organization-scoped keys see every project; project-scoped keys see only their own. Returned `shortId`s can be passed as `projectShortId` to any project-scoped tool to target that project.



## OpenAPI

````yaml /api-reference/api.json get /v1/projects
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
paths:
  /v1/projects:
    get:
      tags:
        - Projects
      summary: List projects
      description: >-
        Lists the projects in the organization the API key belongs to.
        Organization-scoped keys see every project; project-scoped keys see only
        their own. Returned `shortId`s can be passed as `projectShortId` to any
        project-scoped tool to target that project.
      operationId: ListProjects
      parameters: []
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListProjectsResponse'
components:
  schemas:
    ListProjectsResponse:
      type: object
      required:
        - projects
      properties:
        projects:
          type: array
          items:
            $ref: '#/components/schemas/ProjectListItem'
    ProjectListItem:
      type: object
      required:
        - shortId
        - name
        - slug
        - url
        - defaultApplicationShortId
      properties:
        shortId:
          allOf:
            - $ref: '#/components/schemas/ProjectShortId'
          description: >-
            Prefixed project short ID (proj-slug_shortId); pass this back as
            projectShortId on other endpoints.
        name:
          type: string
        slug:
          type: string
        url:
          type: string
        defaultApplicationShortId:
          type: string
          allOf:
            - $ref: '#/components/schemas/ApplicationShortId'
          nullable: true
      description: A project in the organization, usable as a `projectShortId` target.
    ProjectShortId:
      type: string
      pattern: ^proj(-.+_.+|_.+)$
    ApplicationShortId:
      type: string
      pattern: ^app(-.+_.+|_.+)$
  securitySchemes:
    BearerAuth:
      type: http
      scheme: Bearer

````