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

# Obtener Producto por SKU

> Obtener un producto por SKU (external_id)

# Obtener Producto por SKU

Obtén un producto usando su SKU (external\_id).

<Note>Requiere scope `read:products`.</Note>

## Solicitud

```bash theme={null}
GET /api/v1/products/sku/{sku}
```

### Parámetros de Ruta

<ParamField path="sku" type="string" required>
  El SKU del producto (external\_id)
</ParamField>

## Ejemplo

```bash theme={null}
curl -X GET "https://api.zenflow.com.ar/api/v1/products/sku/SKU-001" \
  -H "X-API-Key: zenflow_live_your_key"
```

### Respuesta

```json theme={null}
{
  "success": true,
  "data": {
    "id": 100,
    "barcode": "7891234567890",
    "external_id": "SKU-001",
    "name": "Widget A",
    "category": "Electrónica",
    "price": 29.99,
    "stock": [
      {
        "location_id": "LOC-A1",
        "quantity": 50
      }
    ]
  }
}
```

## Respuesta de Error

```json theme={null}
{
  "success": false,
  "error": {
    "code": "not_found",
    "message": "Producto no encontrado"
  }
}
```
