Medusa E-commerce API

Open-source Shopify alternative

1

Endpoints

28

Views

Jul 20, 2025

Last Checked

NaN

Rate Limit

API Endpoints

Adds a new product to the e-commerce store

Full URL

http://localhost:9000/store/products

Code Examples

curl -X POST 'http://localhost:9000/store/products' \
  -H 'Authorization: Bearer YOUR_API_KEY'

Parameters

{
  "price": 29900,
  "title": "Premium Headphones",
  "variants": [
    {
      "sku": "HP-BLACK-01",
      "title": "Black"
    }
  ],
  "description": "Noise-cancelling wireless headphones"
}

Example Response

{
  "product": {
    "id": "prod_abc123",
    "title": "Premium Headphones",
    "variants": [
      {
        "id": "variant_xyz789",
        "sku": "HP-BLACK-01"
      }
    ]
  }
}

Version

v1

Rate Limit

120 requests/minute
Tags
ecommerceshopify-alternative
Technical Details
Authentication
API Key
Response Formats
JSON
Availability
global
Status
Published
Rate Limits

Self-managed

Supported Languages
JavaScript
Use Cases
online stores
product management
https://medusajs.com/