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

# Get Default Project

> Get the default project for the organization (creates if doesn't exist)



## OpenAPI

````yaml https://control-plane.kubiya.ai/api/openapi.json get /api/v1/projects/default
openapi: 3.1.0
info:
  title: Agent Control Plane API
  description: Multi-tenant agent orchestration with Temporal workflows
  version: 1.0.0
servers: []
security:
  - BearerAuth: []
tags:
  - name: health
    description: 🏥 **Health & Status** - Check API health and availability
  - name: authentication
    description: 🔐 **Authentication** - Token validation and auth management
  - name: agents
    description: 🤖 **Agents** - Create and manage AI agents with custom capabilities
  - name: skills
    description: 🛠️ **Tool Sets** - Manage agent skills and tool configurations
  - name: integrations
    description: 🔌 **Integrations** - Connect to external services (Kubiya managed)
  - name: custom-integrations
    description: >-
      ⚙️ **Custom Integrations** - User-defined integration instances with env
      vars, secrets, and files
  - name: integration-templates
    description: >-
      📦 **Integration Templates** - Pre-configured templates for common
      services (PostgreSQL, Redis, MongoDB, etc.)
  - name: secrets
    description: 🔑 **Secrets** - Secure credential storage and retrieval
  - name: teams
    description: 👥 **Teams** - Team management and collaboration
  - name: workflows
    description: 📊 **Workflows** - Multi-step automation and orchestration
  - name: executions
    description: ▶️ **Executions** - Track and monitor workflow runs
  - name: jobs
    description: ⏰ **Jobs** - Scheduled and webhook-triggered tasks
  - name: policies
    description: 🛡️ **Policies** - Access control and security policies
  - name: analytics
    description: 📈 **Analytics** - Usage metrics and performance monitoring
  - name: projects
    description: 📁 **Projects** - Project organization and management
  - name: environments
    description: 🌍 **Environments** - Environment configuration (dev, staging, prod)
  - name: models
    description: 🧠 **Models** - LLM model configuration and management
  - name: runtimes
    description: ⚡ **Runtimes** - Agent execution runtime environments
  - name: workers
    description: 👷 **Workers** - Worker registration and heartbeat monitoring
  - name: storage
    description: 💾 **Storage** - File storage and cloud integration
  - name: context-graph
    description: 🕸️ **Context Graph** - Knowledge graph and context management
  - name: temporal-workflows
    description: >-
      ⚙️ **Temporal Workflows** - Background workflows for context graph
      ingestion, connector operations, and scheduled jobs
  - name: templates
    description: 📝 **Templates** - Reusable configuration templates
paths:
  /api/v1/projects/default:
    get:
      summary: Get Default Project
      description: Get the default project for the organization (creates if doesn't exist)
      operationId: get_default_project_api_v1_projects_default_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectResponse'
components:
  schemas:
    ProjectResponse:
      properties:
        id:
          type: string
          title: Id
        organization_id:
          type: string
          title: Organization Id
        name:
          type: string
          title: Name
        key:
          type: string
          title: Key
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        goals:
          anyOf:
            - type: string
            - type: 'null'
          title: Goals
        settings:
          additionalProperties: true
          type: object
          title: Settings
        status:
          type: string
          title: Status
        visibility:
          type: string
          title: Visibility
        owner_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Owner Id
        owner_email:
          anyOf:
            - type: string
            - type: 'null'
          title: Owner Email
        restrict_to_environment:
          type: boolean
          title: Restrict To Environment
          default: false
        policy_ids:
          items:
            type: string
          type: array
          title: Policy Ids
          default: []
        default_model:
          anyOf:
            - type: string
            - type: 'null'
          title: Default Model
        created_at:
          type: string
          title: Created At
        updated_at:
          type: string
          title: Updated At
        archived_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Archived At
        agent_count:
          type: integer
          title: Agent Count
          default: 0
        team_count:
          type: integer
          title: Team Count
          default: 0
      type: object
      required:
        - id
        - organization_id
        - name
        - key
        - description
        - goals
        - settings
        - status
        - visibility
        - owner_id
        - owner_email
        - created_at
        - updated_at
        - archived_at
      title: ProjectResponse
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Enter your Kubiya API token (format: Bearer <token>)'

````