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

# Create Bulk Products

> **/product/bulk**

<Note>
  This endpoint requires authentication. Include your Bearer token in the Authorization header.
</Note>

## Description

**/product/bulk**

**Description:**
The `/product/bulk` endpoint allows the creation of multiple products simultaneously by providing an array of product objects.

**Method:**
`POST`

**Request Payload:**

| Parameter | Type  | Description                                     |
| --------- | ----- | ----------------------------------------------- |
| products  | array | An array of product objects with their details. |

## Code Examples

<CodeGroup>
  ```javascript Node.js theme={null}
  const response = await fetch('https://api.royalti.io/product/bulk', {
    method: 'POST',
    headers: {
      'Authorization': `Bearer ${token}`,
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      "products": [
        {
          "upc": "sample-upc",
          "title": "sample-title",
          "displayArtist": "sample-displayArtist",
          "mainArtist": [
            {}
          ],
          "type": "sample-type",
          "format": "sample-format",
          "releaseDate": "2024-01-21",
          "mainGenre": [
            {}
          ],
          "artists": [
            {}
          ],
          "split": [
            {
              "user": "sample-user",
              "share": 1
            }
          ]
        }
      ]
    })
  });

  const data = await response.json();
  console.log(data);
  ```

  ```python Python theme={null}
  import requests

  response = requests.post(
    'https://api.royalti.io/product/bulk',
    headers={
      'Authorization': f'Bearer {token}'
    },
    json={"products":[{"upc":"sample-upc","title":"sample-title","displayArtist":"sample-displayArtist","mainArtist":[{}],"type":"sample-type","format":"sample-format","releaseDate":"2024-01-21","mainGenre":[{}],"artists":[{}],"split":[{"user":"sample-user","share":1}]}]}
  )

  data = response.json()
  print(data)
  ```

  ```bash cURL theme={null}
  curl -X POST https://api.royalti.io/product/bulk \
    -H "Authorization: Bearer YOUR_TOKEN" \
    -H "Content-Type: application/json" \
    -d '{"products":[{"upc":"sample-upc","title":"sample-title","displayArtist":"sample-displayArtist","mainArtist":[{}],"type":"sample-type","format":"sample-format","releaseDate":"2024-01-21","mainGenre":[{}],"artists":[{}],"split":[{"user":"sample-user","share":1}]}]}'

  ```
</CodeGroup>


## OpenAPI

````yaml post /product/bulk
openapi: 3.0.0
info:
  title: Royalti.io API
  description: "# Royalti API\r\n\r\nThis is the Royalti music royalty management platform API server.\r\n\r\n## Overview\r\n\r\nThe Royalti API provides comprehensive music royalty management services including:\r\n- Music publishing and writer management\r\n- Royalty processing and analytics\r\n- DDEX integration for music industry standards\r\n- File processing and pattern recognition\r\n- Payment processing and distribution\r\n\r\n## Authentication\r\n\r\nThe API uses JWT-based authentication with multiple protection levels:\r\n- Public endpoints for basic operations\r\n- Protected endpoints requiring valid JWT tokens\r\n- Admin endpoints for administrative functions\r\n\r\n## Features\r\n\r\n- Multi-dimensional royalty analytics\r\n- CWR (Collective Works Registration) support\r\n- DDEX integration for music metadata\r\n- Advanced file processing with pattern recognition\r\n- Real-time data processing with queue system"
  version: 2.6.0
  contact:
    name: Royalti.io Support
    email: support@royalti.io
    url: https://royalti.io
  license:
    name: Proprietary
    url: https://royalti.io/terms
servers:
  - url: https://api.royalti.io
    description: Production server
  - url: https://api-dev.royalti.io
    description: Development server
  - url: http://localhost:8084
    description: Local development
security:
  - bearerAuth: []
tags:
  - name: Accounting
    description: Accounting and financial transaction operations
  - name: DDEX
    description: DDEX operations (ERN/MEAD, messages, delivery, providers)
  - name: Label
    description: Label management operations
  - name: Internal Webhooks
    description: Internal system webhooks for royalty processing and downloads
  - name: Payment Webhooks
    description: Payment processor webhook endpoints
  - name: Billing Webhooks
    description: Stripe billing and subscription webhooks
  - name: Infrastructure Webhooks
    description: Cloudflare domain and SSL webhooks
  - name: Distribution Webhooks
    description: Digital distribution platform webhooks (FUGA)
paths:
  /product/bulk:
    post:
      tags:
        - Product
      summary: Create Bulk Products
      description: >-
        **/product/bulk**


        **Description:**

        The `/product/bulk` endpoint allows the creation of multiple products
        simultaneously by providing an array of product objects.


        **Method:**

        `POST`


        **Request Payload:**


        | Parameter | Type | Description |

        | --- | --- | --- |

        | products | array | An array of product objects with their details. |
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                products:
                  type: array
                  items:
                    type: object
                    properties:
                      upc:
                        type: string
                      title:
                        type: string
                      displayArtist:
                        type: string
                      mainArtist:
                        type: array
                        items:
                          type: string
                      type:
                        type: string
                      format:
                        type: string
                      releaseDate:
                        type: string
                        format: date
                      mainGenre:
                        type: array
                        items:
                          type: string
                      artists:
                        type: array
                        items:
                          type: string
                      split:
                        type: array
                        items:
                          type: object
                          properties:
                            user:
                              type: string
                            share:
                              type: integer
              required:
                - products
      responses:
        '201':
          description: Created with possible errors
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  createdProducts:
                    type: array
                    items:
                      type: string
                  processedCount:
                    type: integer
                  errors:
                    type: array
                    items:
                      type: string
              example:
                message: Bulk product creation completed
                createdProducts:
                  - Product One
                  - Product Two
                processedCount: 3
                errors:
                  - Product Three UPC already exists
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - bearerAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
            details:
              type: array
              items:
                type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        JWT Authorization header using the Bearer scheme. Format: "Bearer
        {token}"

````