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

# Create Product

> Create a new product in your organization.

Creates a new product record with the given details.

**Authorization**: Requires Bearer token\
**Base URL**: `https://api.antei.com`

### Request Body

* `name` *(required)* – Name of the product
* `category` *(optional)* – Product category
* `pricing_amount` *(required)* – Price of the product
* `currency` *(required)* – Currency code (e.g., USD, EUR, INR)

### Response

Returns the created product object including its unique ID.


## OpenAPI

````yaml POST /products
openapi: 3.0.1
info:
  title: Antei API Reference
  description: >-
    Programmatic access to Antei’s platform. Use this API to manage core objects
    and retrieve taxation insights.
  version: 1.0.0
  license:
    name: MIT
  contact:
    name: Antei Developer Support
    email: support@antei.com
    url: https://antei.com
servers:
  - url: https://api.antei.com
security:
  - bearerAuth: []
paths:
  /products:
    post:
      tags:
        - Products
      summary: Create product
      description: >-
        Create a new product with attributes like name, category, and pricing
        details.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NewProduct'
      responses:
        '201':
          description: Product created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Product'
components:
  schemas:
    NewProduct:
      type: object
      properties:
        name:
          type: string
        category:
          type: string
        pricing_amount:
          type: number
        currency:
          type: string
      required:
        - name
        - pricing_amount
        - currency
    Product:
      type: object
      properties:
        id:
          type: string
          description: Unique product identifier
        name:
          type: string
          description: Product name
        category:
          type: string
          description: Product category
        pricing_amount:
          type: number
          description: Base price of the product
        currency:
          type: string
          description: Currency code (e.g., USD, EUR, INR)
      required:
        - id
        - name
        - pricing_amount
        - currency
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````