Products API

Manage products and variants with the Nevuto API.

Products represent items for sale in a store. Each product can have multiple variants (sizes, colors, etc.).

Create a Product

POST /v1/products
{
  "storeId": "store_abc123",
  "name": "Premium T-Shirt",
  "price": 2999,
  "currency": "USD",
  "description": "High-quality cotton t-shirt",
  "variants": [
    { "name": "Small", "sku": "TS-S" },
    { "name": "Medium", "sku": "TS-M" },
    { "name": "Large", "sku": "TS-L" }
  ]
}

List Products

GET /v1/stores/:storeId/products

Get a Product

GET /v1/products/:id

Update a Product

PUT /v1/products/:id

Delete a Product

DELETE /v1/products/:id