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

# Create project

> Create a new project within the current organization



## OpenAPI

````yaml api-docs/archived/organizations.json post /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:
    post:
      tags:
        - Projects
      summary: Create project
      description: Create a new project within the current organization
      operationId: createProject
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  description: Project name
                slug:
                  type: string
                  description: URL-friendly identifier
                description:
                  type: string
                  nullable: true
                organizationId:
                  type: string
                  description: Parent organization
                metadata:
                  type: object
                  nullable: true
                  additionalProperties: true
              required:
                - name
                - slug
                - organizationId
      responses:
        '201':
          description: Project created
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    $ref: '#/components/schemas/Project'
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

````