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

# Create product

> Creates a new product



## OpenAPI

````yaml POST /products
openapi: 3.1.0
info:
  title: Kakiyo API
  description: API for automating LinkedIn outreach campaigns with AI-powered conversations
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.kakiyo.com/v1
security:
  - bearerAuth: []
paths:
  /products:
    post:
      summary: Create Product
      description: Creates a new product
      operationId: createProduct
      requestBody:
        description: Product to create
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateProductRequest'
        required: true
      responses:
        '201':
          description: Product created successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    example: product_12345abcde
                  message:
                    type: string
                    example: Product created successfully
        '400':
          description: Invalid request parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden - limit reached
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    CreateProductRequest:
      type: object
      required:
        - name
        - description
      properties:
        name:
          type: string
          minLength: 3
          example: Sales Engagement Pro
        description:
          type: string
          minLength: 10
          example: >-
            Sales Engagement Pro is an AI-powered platform that helps sales
            teams automate and optimize their outreach efforts. The solution
            includes multi-channel communication capabilities, personalized
            messaging at scale, advanced analytics, and CRM integration.


            Key benefits include:

            - 3x increase in response rates compared to traditional outreach

            - 70% reduction in time spent on manual follow-ups

            - Seamless integration with existing CRM systems

            - Real-time insights on prospect engagement

            - Smart prioritization of high-potential leads


            Our customers typically see ROI within the first 60 days and
            experience a 40% increase in sales pipeline generation.
    Error:
      type: object
      properties:
        error:
          type: string
          example: validation_error
        message:
          type: string
          example: The request parameters failed validation
        details:
          type: array
          items:
            type: object
            properties:
              field:
                type: string
                example: name
              message:
                type: string
                example: The name field is required
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````