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

# Create Product

> Endpoint POST /v1/shop/products

`POST` `/v1/shop/products`

## Body

```json theme={null}
{
  "name": "NAME PRODUCT",
  "description": "DESCRIPTION_PRODUCT",
  "descriptionai": "",
  "code": "",
  "price": 23.98,
  "category": []
}
```

## Autenticacion

Este endpoint requiere tu token de API. Incluyelo en el body como `token` o como query param `token`/`api-token`. Ve [Autenticacion](/getting-started/authentication) para mas detalles.

## Ejemplo de request

```bash theme={null}
curl -X POST https://api.shimli.app/v1/shop/products \
  -H "Content-Type: application/json" \
  -d '{
    "name": "NAME PRODUCT",
    "description": "DESCRIPTION_PRODUCT",
    "descriptionai": "",
    "code": "",
    "price": 23.98,
    "category": []
}'
```

## Respuesta

```json title="200 OK" theme={null}
{
  "statusCode": 200,
  "body": {
    "err": false
  }
}
```
