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

# Add Item



## OpenAPI

````yaml /openapi.json post /v1/workspaces/{workspaceId}/projects/{projectId}/items
openapi: 3.1.0
info:
  title: Specurate API
  description: ''
  version: 1.0.0
  contact: {}
servers:
  - url: https://app.specurate.com/api
    description: API Server
security: []
tags: []
paths:
  /v1/workspaces/{workspaceId}/projects/{projectId}/items:
    post:
      tags:
        - Project Items
      summary: Add Item
      operationId: ProjectItemsController_addItem_v1
      parameters:
        - name: workspaceId
          required: true
          in: path
          schema:
            type: string
        - name: projectId
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateProjectItemDto'
      responses:
        '409':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponseDto'
components:
  schemas:
    CreateProjectItemDto:
      type: object
      properties:
        initialArea:
          $ref: '#/components/schemas/InitialAreaDto'
        name:
          type: string
          maxLength: 200
        categoryId:
          type: string
        linkCatalogItemId:
          type: string
        selectedPartIds:
          type: array
          items:
            type: string
    ErrorResponseDto:
      type: object
      properties:
        statusCode:
          type: number
          example: 409
        message:
          type: string
          example: Conflict
        code:
          type: string
          example: VARIANT_COMBO_TAKEN
          description: >-
            UPPER_SNAKE_CASE domain error code. Present on validation /
            business-rule errors; absent on generic HTTP errors.
        entity:
          type: string
          description: >-
            Entity type that caused the conflict (e.g. "ProjectItem"). Present
            when the error is entity-specific.
      required:
        - statusCode
        - message
    InitialAreaDto:
      type: object
      properties:
        quantity:
          type: string
          pattern: ^(?!0+(?:\.0{1,2})?$)\d{1,16}(?:\.\d{1,2})?$
        areaId:
          type: string
          pattern: ^[1-9]\d*$
        structureVersion:
          type: number
          minimum: 1
      required:
        - quantity
        - areaId
        - structureVersion

````