curl https://api.contazen.ro/v1/products \
-H "Authorization: Bearer sk_live_YOUR_API_KEY"
{
"success": true,
"data": {
"object": "list",
"data": [
{
"id": "prod_5f6g7h8i9j",
"object": "product",
"name": "Laptop Dell XPS 15",
"code": "DELL-XPS-15",
"barcode": "1234567890123",
"description": "High-performance laptop with 15.6\" display",
"unit": "buc",
"sell_price": 5000.00,
"vat_rate": 19,
"currency": "RON",
"is_active": true,
"category_id": 12,
"category_name": "Electronics",
"stock_quantity": 15,
"created_at": 1704067200,
"updated_at": 1710460800
},
{
"id": "prod_1a2b3c4d5e",
"object": "product",
"name": "Web Development Services",
"code": "WEB-DEV-01",
"barcode": null,
"description": "Professional web development services",
"unit": "ora",
"sell_price": 250.00,
"vat_rate": 19,
"currency": "RON",
"is_active": true,
"category_id": 8,
"category_name": "Services",
"stock_quantity": null,
"created_at": 1703980800,
"updated_at": 1703980800
}
],
"has_more": true,
"total": 45,
"page": 1,
"per_page": 50,
"total_pages": 1
},
"meta": {
"version": "v1",
"response_time": "34.56ms"
}
}
Retrieve a paginated list of products
curl https://api.contazen.ro/v1/products \
-H "Authorization: Bearer sk_live_YOUR_API_KEY"
{
"success": true,
"data": {
"object": "list",
"data": [
{
"id": "prod_5f6g7h8i9j",
"object": "product",
"name": "Laptop Dell XPS 15",
"code": "DELL-XPS-15",
"barcode": "1234567890123",
"description": "High-performance laptop with 15.6\" display",
"unit": "buc",
"sell_price": 5000.00,
"vat_rate": 19,
"currency": "RON",
"is_active": true,
"category_id": 12,
"category_name": "Electronics",
"stock_quantity": 15,
"created_at": 1704067200,
"updated_at": 1710460800
},
{
"id": "prod_1a2b3c4d5e",
"object": "product",
"name": "Web Development Services",
"code": "WEB-DEV-01",
"barcode": null,
"description": "Professional web development services",
"unit": "ora",
"sell_price": 250.00,
"vat_rate": 19,
"currency": "RON",
"is_active": true,
"category_id": 8,
"category_name": "Services",
"stock_quantity": null,
"created_at": 1703980800,
"updated_at": 1703980800
}
],
"has_more": true,
"total": 45,
"page": 1,
"per_page": 50,
"total_pages": 1
},
"meta": {
"version": "v1",
"response_time": "34.56ms"
}
}
1
- Active products only0
- Inactive products onlyname
- Product nameprice
- Selling pricecreated_at
- Creation dateasc
, desc
Show Properties
list
for paginated responsesShow Product Object
product
curl https://api.contazen.ro/v1/products \
-H "Authorization: Bearer sk_live_YOUR_API_KEY"
{
"success": true,
"data": {
"object": "list",
"data": [
{
"id": "prod_5f6g7h8i9j",
"object": "product",
"name": "Laptop Dell XPS 15",
"code": "DELL-XPS-15",
"barcode": "1234567890123",
"description": "High-performance laptop with 15.6\" display",
"unit": "buc",
"sell_price": 5000.00,
"vat_rate": 19,
"currency": "RON",
"is_active": true,
"category_id": 12,
"category_name": "Electronics",
"stock_quantity": 15,
"created_at": 1704067200,
"updated_at": 1710460800
},
{
"id": "prod_1a2b3c4d5e",
"object": "product",
"name": "Web Development Services",
"code": "WEB-DEV-01",
"barcode": null,
"description": "Professional web development services",
"unit": "ora",
"sell_price": 250.00,
"vat_rate": 19,
"currency": "RON",
"is_active": true,
"category_id": 8,
"category_name": "Services",
"stock_quantity": null,
"created_at": 1703980800,
"updated_at": 1703980800
}
],
"has_more": true,
"total": 45,
"page": 1,
"per_page": 50,
"total_pages": 1
},
"meta": {
"version": "v1",
"response_time": "34.56ms"
}
}
Was this page helpful?