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

# List projects

> List projects in the workspace.

<Info>Replace `{your-subdomain}` with your workspace's subdomain. <br /> Learn how to find your subdomain in [Workspace subdomain](/getting-started/workspace-subdomain).</Info>


## OpenAPI

````yaml bundled/playdash.yaml GET /projects
openapi: 3.0.3
info:
  title: NeetoPlaydash APIs
  version: 1.0.0
  description: >-
    APIs to read projects, runs, test entities, result histories and traces from
    NeetoPlaydash.
servers:
  - description: NeetoPlaydash APIs
    url: https://{your-subdomain}.neetoplaydash.com/api/external/v1
    variables:
      your-subdomain:
        default: spinkart
        description: >-
          Replace **spinkart** with your [workspace's
          subdomain](/getting-started/workspace-subdomain).
security: []
tags:
  - name: Projects
    description: APIs to list projects in the workspace.
  - name: Runs
    description: APIs to list runs and fetch a run with its specs.
  - name: Test Entities
    description: APIs to list test entities and fetch a test entity with its outcomes.
  - name: Result Histories
    description: APIs to fetch the historical results of a test entity.
  - name: Traces
    description: APIs to fetch Playwright traces for a run or a test entity.
paths:
  /projects:
    get:
      tags:
        - Projects
      summary: List projects
      description: List projects in the workspace.
      operationId: listProjects
      parameters:
        - $ref: '#/components/parameters/api_key_header'
        - $ref: '#/components/parameters/accept_header'
        - $ref: '#/components/parameters/page_number_param'
        - $ref: '#/components/parameters/page_size_param'
      responses:
        '200':
          description: >-
            OK - Request succeeded. Defaults to 15 projects per page (maximum
            50).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/project_list_response'
components:
  parameters:
    api_key_header:
      in: header
      name: X-Api-Key
      description: >-
        Use the X-Api-Key header to provide your workspace API key. Refer to
        [Authentication](/getting-started/authentication) for more information.
      required: true
      schema:
        type: string
    accept_header:
      in: header
      name: Accept
      description: >-
        Specifies the expected response format. Must be set to
        `application/json` for proper API communication.
      required: true
      schema:
        type: string
        enum:
          - application/json
        default: application/json
    page_number_param:
      in: query
      name: page_number
      description: >-
        Page of results to retrieve, starting from 1. Defaults to 1 when
        omitted.
      required: false
      schema:
        type: integer
        default: 1
        example: 1
    page_size_param:
      in: query
      name: page_size
      description: >-
        Number of records returned per page. Each endpoint applies its own
        default and maximum value.
      required: false
      schema:
        type: integer
        example: 15
  schemas:
    project_list_response:
      type: object
      properties:
        projects:
          type: array
          items:
            $ref: '#/components/schemas/project'
        pagination:
          $ref: '#/components/schemas/pagination'
    project:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier of the project.
          example: pdqmxlz
        name:
          type: string
          description: Name of the project.
          example: Spinkart Web
        archived:
          type: boolean
          description: Whether the project has been archived.
          example: false
    pagination:
      type: object
      properties:
        total_records:
          type: integer
          description: Total number of records across all pages.
          example: 42
        total_pages:
          type: integer
          description: Total number of pages available.
          example: 3
        current_page_number:
          type: integer
          description: Current page number.
          example: 1
        page_size:
          type: integer
          description: Number of records per page.
          example: 15

````