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

# List Projects

> <strong>Deprecated.</strong> Use the <code>List Projects</code> endpoint under Organization instead.

Retrieves all Projects accessible by the authenticated user.

A Project is a unit of work where queries, data tables, and semantic catalogs are managed. Projects live inside Workspaces.


<span style={{display: "flex", gap: "10px", flexDirection: "row", alignItems: "center"}}>
  <img src="https://cdn.peaka.com/badges/partner-api-key-badge.png" />
</span>


## OpenAPI

````yaml get /projects
openapi: 3.0.1
info:
  title: Peaka Gateway API
  description: Peaka Gateway API Documentation
  version: '1.0'
servers:
  - url: https://partner.peaka.studio/api/v1
    description: Default Server URL (US Zone)
  - url: https://partner.eu.peaka.studio/api/v1
    description: EU Zone
security:
  - bearerAuth: []
paths:
  /projects:
    get:
      tags:
        - Projects (Deprecated)
      summary: List Projects
      description: >
        <strong>Deprecated.</strong> Use the <code>List Projects</code> endpoint
        under Organization instead.


        Retrieves all Projects accessible by the authenticated user.


        A Project is a unit of work where queries, data tables, and semantic
        catalogs are managed. Projects live inside Workspaces.
      operationId: listProjects
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Project'
              examples:
                List of all projects:
                  description: List of all projects
                  value:
                    - id: SksnYuxH
                      name: Anapp23334
                      description: null
                      domain: anapp2-rfto
                      webhookBaseUrl: https://anapp2-rfto--test.api.peaka.host
                      createdAt: '2023-08-21T11:09:04.699714310Z'
                    - id: 0IQ6f4QB
                      name: App Deneme
                      description: null
                      domain: appdeneme-wmdp
                      webhookBaseUrl: https://appdeneme-wmdp--test.api.peaka.host
                      createdAt: '2023-12-14T12:38:55.025274418Z'
      deprecated: true
components:
  schemas:
    Project:
      type: object
      properties:
        id:
          type: string
          description: Project ID
        name:
          type: string
          description: Project name
        description:
          type: string
          description: Descriptive text about the project
        domain:
          type: string
          description: Domain of the project
        webhookBaseUrl:
          type: string
          description: Webhook base URL
        createdAt:
          type: string
          description: The date and time the project was created
        owner:
          type: string
          description: The owner of the project
        workspaceId:
          type: string
          description: The workspace to which the project belongs
      description: Project
  securitySchemes:
    bearerAuth:
      type: http
      description: >-
        Use the Authorization header with the value 'Bearer <apiKey>' to
        authenticate. Partner API Keys have full access; Project API Keys are
        limited to their project scope. Learn more:
        https://docs.peaka.com/api-reference/authentication
      scheme: bearer
      bearerFormat: Api Key

````