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

# List projects

> List all projects accessible to the authenticated user. Organization context is derived from the auth token.



## OpenAPI

````yaml api-docs/archived/organizations.json get /v1/regions/global/projects
openapi: 3.1.1
info:
  title: Organizations API
  version: 1.0.0
  description: >-
    Organizations API for the k0rdent Enterprise platform. Provides organization
    lifecycle management, project grouping, invitations, quotas, and folder
    hierarchy.
  contact:
    name: k0rdent Enterprise API Support
    email: api-support@example.com
    url: https://support.example.com
  license:
    name: Proprietary
    url: https://k0rdent.example.com/license
servers:
  - url: ''
    description: For documentation only
  - url: https://api.example.com
    description: Arc API Base URL
  - url: https://api.internal.example.com
    description: Atlas API Base URL
  - url: http://localhost:{port}
    description: Local Development
    variables:
      port:
        default: '4010'
        description: Organizations service port
security: []
paths:
  /v1/regions/global/projects:
    get:
      tags:
        - Projects
      summary: List projects
      description: >-
        List all projects accessible to the authenticated user. Organization
        context is derived from the auth token.
      operationId: listProjects
      parameters:
        - name: organizationId
          in: query
          schema:
            type: string
          description: Filter by organization
        - name: limit
          in: query
          schema:
            type: number
            default: 20
          description: Maximum number of results
        - name: offset
          in: query
          schema:
            type: number
            default: 0
          description: Number of results to skip
      responses:
        '200':
          description: List of projects
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Project'
                  meta:
                    type: object
                    properties:
                      total:
                        type: number
                      limit:
                        type: number
                      offset:
                        type: number
components:
  schemas:
    Project:
      type: object
      description: Project entity within an organization
      properties:
        id:
          type: string
          description: Unique project identifier
        name:
          type: string
          description: Project name
        slug:
          type: string
          description: URL-friendly project identifier
        organizationId:
          type: string
          description: Parent organization identifier
        description:
          type: string
          nullable: true
          description: Project description
        metadata:
          type: object
          nullable: true
          additionalProperties:
            nullable: true
          description: Additional project metadata
        createdAt:
          type: string
          format: date-time
          description: Creation timestamp
        updatedAt:
          type: string
          format: date-time
          description: Last update timestamp
      required:
        - id
        - name
        - slug
        - organizationId

````