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

# Create a Product



## OpenAPI

````yaml POST /v1/products
openapi: 3.1.0
info:
  title: Plexos Pay API
  description: Mobile Money Payment Gateway for African Markets
  version: 1.0.0
  contact:
    name: Plexos Pay
    url: https://plexospay.com
servers:
  - url: https://api.plexospay.com
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/products:
    post:
      tags:
        - Products
      summary: Create a product
      operationId: createProduct
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - name
                - price
              properties:
                name:
                  type: string
                  minLength: 1
                  maxLength: 255
                price:
                  type: integer
                  minimum: 1
                  maximum: 100000000
                  description: Price in centavos
                description:
                  type: string
                currency:
                  $ref: '#/components/schemas/Currency'
                metadata:
                  $ref: '#/components/schemas/Metadata'
      responses:
        '200':
          description: Product created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Product'
components:
  schemas:
    Currency:
      type: string
      enum:
        - CVE
        - AOA
      description: ISO currency code
    Metadata:
      type: object
      additionalProperties: true
      description: Arbitrary key-value metadata (max 50 keys)
      nullable: true
    Product:
      type: object
      properties:
        id:
          type: string
          example: pr_abc123
        name:
          type: string
          example: Premium Plan
        description:
          type: string
          nullable: true
        price:
          type: string
          example: '50000'
        currency:
          $ref: '#/components/schemas/Currency'
        active:
          type: boolean
        metadata:
          $ref: '#/components/schemas/Metadata'
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key starting with `sk_live_` or `sk_test_`

````