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

# Create project

> Create a new project in the organization the API key belongs to. Requires an organization-scoped API key with write scope.



## OpenAPI

````yaml /api-reference/api.json post /v1/projects
openapi: 3.0.0
info:
  title: QA.tech API
  version: 1.0.0
  contact:
    name: QA.tech
    url: https://qa.tech
    email: support@qa.tech
  description: API for triggering and managing AI-powered test runs
servers:
  - url: https://api.qa.tech
    description: Production
    variables: {}
security:
  - BearerAuth: []
tags:
  - name: Runs
  - name: Infrastructure
  - name: Test Cases
  - name: Application Builds
  - name: Status badge
  - name: Remote Tunnels
  - name: Chat
  - name: Applications
  - name: Features
  - name: Metrics
  - name: Release Checks
  - name: Projects
paths:
  /v1/projects:
    post:
      tags:
        - Projects
      summary: Create project
      description: >-
        Create a new project in the organization the API key belongs to.
        Requires an organization-scoped API key with write scope.
      operationId: CreateProject
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateProjectRequest'
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateProjectResponse'
components:
  schemas:
    CreateProjectRequest:
      type: object
      required:
        - name
        - url
      properties:
        name:
          type: string
          minLength: 1
          maxLength: 100
          description: Display name for the new project
        url:
          type: string
          format: uri
          description: URL of the default environment for the project's web application
      description: >-
        Request body for creating a new project in the organization the API key
        belongs to
    CreateProjectResponse:
      type: object
      required:
        - project
      properties:
        project:
          $ref: '#/components/schemas/CreatedProject'
    CreatedProject:
      type: object
      required:
        - shortId
        - name
        - slug
        - url
        - defaultApplicationShortId
        - organization
      properties:
        shortId:
          allOf:
            - $ref: '#/components/schemas/ProjectShortId'
          description: >-
            Prefixed project short ID (proj-slug_shortId); pass this back as
            projectShortId on other endpoints.
        name:
          type: string
        slug:
          type: string
        url:
          type: string
        defaultApplicationShortId:
          type: string
          allOf:
            - $ref: '#/components/schemas/ApplicationShortId'
          nullable: true
        organization:
          $ref: '#/components/schemas/CreatedProjectOrganization'
      description: The newly created project
    ProjectShortId:
      type: string
      pattern: ^proj(-.+_.+|_.+)$
    ApplicationShortId:
      type: string
      pattern: ^app(-.+_.+|_.+)$
    CreatedProjectOrganization:
      type: object
      required:
        - uuid
        - name
      properties:
        uuid:
          type: string
        name:
          type: string
      description: Organization the created project belongs to
  securitySchemes:
    BearerAuth:
      type: http
      scheme: Bearer

````