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

# List projects

> Retrieves a list of Projects associated with a Workspace. Supports JSON, newline-delimited JSON (`application/x-ndjson`), and CSV (`text/csv`) response formats via the `Accept` header.



## OpenAPI

````yaml https://api.qlty.sh/openapi.json get /gh/{ownerKeyOrId}/projects
openapi: 3.1.0
info:
  title: Qlty API
  version: 1.0.0
  description: >-
    The Qlty API is organized around REST. It provides predictable,
    resource-oriented URLs, accepts JSON-encoded request bodies, and returns
    JSON-encoded responses.
servers:
  - url: https://api.qlty.sh
security:
  - Bearer: []
tags:
  - name: Service
    description: Service status and API discovery operations
  - name: User
    description: Operations for the authenticated user
  - name: Workspaces
    description: Operations for managing workspaces
  - name: Projects
    description: Operations for managing projects
  - name: Issues
    description: Operations for managing issues
  - name: Metrics
    description: Operations for retrieving metrics
  - name: Components
    description: Operations for retrieving components
  - name: Coverage
    description: Operations for retrieving code coverage data
paths:
  /gh/{ownerKeyOrId}/projects:
    get:
      tags:
        - Projects
      summary: List projects
      description: >-
        Retrieves a list of Projects associated with a Workspace. Supports JSON,
        newline-delimited JSON (`application/x-ndjson`), and CSV (`text/csv`)
        response formats via the `Accept` header.
      operationId: listProjects
      parameters:
        - schema:
            type: string
            minLength: 3
            example: acme-corp
            description: Repository owner name (login) or workspace ID
          required: true
          description: Repository owner name (login) or workspace ID
          name: ownerKeyOrId
          in: path
        - schema:
            type: integer
            minimum: 1
            maximum: 100
            example: 20
            description: Maximum number of items to return (1-100)
          required: false
          description: Maximum number of items to return (1-100)
          name: page[limit]
          in: query
        - schema:
            type: integer
            nullable: true
            minimum: 0
            example: 0
            description: Number of items to skip
          required: false
          description: Number of items to skip
          name: page[offset]
          in: query
      responses:
        '200':
          description: List all projects for the owner
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectList'
              example:
                data:
                  - id: 85fae897-5a48-483b-ad29-1852c0db1707
                    workspaceId: 1c47b6fd-db56-4fbd-9cf0-4d88f9631050
                    providerUrl: https://github.com/acmeco/awesome-project
                    key: awesome-project
                    workspaceKey: acmeco
                meta:
                  hasMore: false
            application/x-ndjson:
              schema:
                type: string
                description: Newline-delimited JSON (NDJSON) format
                example: >-
                  {"id":"550e8400-e29b-41d4-a716-446655440000","workspaceId":"ws_abc123","providerUrl":"https://github.com/acme-corp/my-repo","key":"my-repo","workspaceKey":"acme-corp"}
            text/csv:
              schema:
                type: string
                description: CSV format with header row
                example: >-
                  id,workspaceId,providerUrl,key,workspaceKey

                  550e8400-e29b-41d4-a716-446655440000,ws_abc123,https://github.com/acme-corp/my-repo,my-repo,acme-corp
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Rate Limit Exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    ProjectList:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Project'
        meta:
          type: object
          properties:
            hasMore:
              type: boolean
              example: true
              description: Whether there are more items available beyond this page
          required:
            - hasMore
      required:
        - data
        - meta
    Error:
      type: object
      properties:
        errors:
          type: array
          items:
            type: object
            properties:
              status:
                type: string
                example: '400'
              title:
                type: string
                example: Bad Request
              detail:
                type: string
                example: The request was invalid.
            required:
              - status
              - title
              - detail
      required:
        - errors
    Project:
      type: object
      properties:
        id:
          type: string
          example: 550e8400-e29b-41d4-a716-446655440000
        workspaceId:
          type: string
          example: ws_abc123
        providerUrl:
          type: string
          example: https://github.com/acme-corp/my-repo
          description: URL to the repository on the provider
        key:
          type: string
          example: my-repo
          description: Repository name
        workspaceKey:
          type: string
          example: acme-corp
          description: Key of the workspace this project belongs to
      required:
        - id
        - workspaceId
        - providerUrl
        - key
        - workspaceKey
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      description: Generate an API token at https://qlty.sh/user/settings/tokens

````