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

# Create Project

> Create a new project.



## OpenAPI

````yaml POST /orgs/{org_id}/projects
openapi: 3.1.0
info:
  title: Timbal Platform API
  description: Public API documentation for the Timbal platform
  license:
    name: ''
  version: 2.0.0
servers:
  - url: https://api.timbal.ai
    description: Production
  - url: https://api.dev.timbal.ai
    description: Development
security: []
tags:
  - name: ace
    description: Action Control Engine (ACE) operations
  - name: alarms
    description: Metric series and threshold alarms
  - name: analytics
    description: Org and project analytics
  - name: billing
    description: Subscriptions, usage, and payment-related operations
  - name: channels
    description: Delivery channels alarms notify through
  - name: content
    description: Re-sign stored content URLs
  - name: files
    description: File operations
  - name: iam
    description: IAM — actions, roles, users, and authorization introspection
  - name: k2
    description: Knowledge Bases v2 operations
  - name: orgs
    description: Organization operations
  - name: projects
    description: Project operations
  - name: runs
    description: Execution operations
  - name: templates
    description: Public project template catalog
  - name: users
    description: Authenticated user profile
paths:
  /orgs/{org_id}/projects:
    post:
      tags:
        - projects
      description: Create a new project.
      operationId: handler
      parameters:
        - name: org_id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateProjectReqBody'
        required: true
      responses:
        '200':
          description: Project created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateProjectResBody'
      security:
        - bearer_auth: []
components:
  schemas:
    CreateProjectReqBody:
      type: object
      required:
        - origin
      properties:
        name:
          type:
            - string
            - 'null'
        origin:
          $ref: '#/components/schemas/ProjectOrigin'
    CreateProjectResBody:
      type: object
      required:
        - id
        - name
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
    ProjectOrigin:
      oneOf:
        - type: object
          required:
            - project_id
            - type
          properties:
            project_id:
              type: integer
              format: int64
            type:
              type: string
              enum:
                - Template
        - type: object
          required:
            - type
          properties:
            agents:
              type: array
              items:
                type: string
              description: >-
                Agent directory names to scaffold under `workforce/`. Omit for
                an

                empty workforce directory.
            kb_id:
              type:
                - integer
                - 'null'
              format: int64
              description: >-
                Knowledge base to attach to the project. Provide an existing
                KB's

                id to link it, or omit to auto-create an empty one.
            type:
              type: string
              enum:
                - Scratch
            with_ui:
              type: boolean
              description: >-
                Include the default web UI scaffold. Requires at least one entry
                in

                `agents` (workflows alone do not use the web UI).
            workflows:
              type: array
              items:
                type: string
              description: Workflow directory names to scaffold under `workforce/`.
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      description: >-
        Timbal API key. Obtain your API key from the Timbal platform settings.
        See [Authentication](/api-reference/authentication) for more
        information.

````