Stores API

Create and manage stores with the Nevuto API.

Stores are the top-level resource in Nevuto. Each store represents an online shop with its own products, orders, and settings.

Create a Store

POST /v1/stores
{
  "name": "My Store",
  "currency": "USD",
  "description": "An awesome online store"
}

Response:

{
  "data": {
    "id": "store_abc123",
    "name": "My Store",
    "currency": "USD",
    "description": "An awesome online store",
    "createdAt": "2026-04-02T12:00:00Z"
  }
}

List Stores

GET /v1/stores

Returns a paginated list of all stores associated with your API key.

Get a Store

GET /v1/stores/:id

Update a Store

PUT /v1/stores/:id

Delete a Store

DELETE /v1/stores/:id