Skip to main content
GET
https://api.zenflow.com.ar
/
api
/
v1
/
products
List Products
curl --request GET \
  --url https://api.zenflow.com.ar/api/v1/products \
  --header 'X-API-Key: <api-key>'

List Products

Retrieve a list of products with optional filtering and pagination.
Requires read:products scope.

Request

GET /api/v1/products

Query Parameters

page
integer
default:"1"
Page number
limit
integer
default:"50"
Items per page (max 100)
Search by name, barcode, or SKU
category
string
Filter by category
weighable
boolean
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
    }
  }
}