List Products
Retrieve a list of products with optional filtering and pagination.
Requires read:products scope.
Request
Query Parameters
Search by name, barcode, or SKU
Filter by weighable products
Example
curl -X GET "https://api.zenflow.com.ar/api/v1/products?page=1&limit=20&search=widget" \
-H "X-API-Key: zenflow_live_your_key"
Response
{
"success": true,
"data": {
"products": [
{
"id": 100,
"barcode": "7891234567890",
"external_id": "SKU-001",
"name": "Widget A",
"category": "Electronics",
"price": 29.99,
"weight": 0.5,
"weighable": false,
"is_active": true
}
],
"pagination": {
"total": 150,
"page": 1,
"limit": 20,
"total_pages": 8
}
}
}