curl -X GET https://api.kiototeteria.com/products/category/1
[
{
"id": 1,
"name": "Matcha Green Tea",
"slug": "matcha-green-tea",
"description": "Premium organic matcha green tea from Japan",
"price": "12.99",
"isActive": true,
"categoryId": 1,
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Jasmine Tea",
"slug": "jasmine-tea",
"description": "Fragrant jasmine tea with delicate floral notes",
"price": "9.99",
"isActive": true,
"categoryId": 1,
"createdAt": "2024-01-14T09:20:00Z",
"updatedAt": "2024-01-14T09:20:00Z"
}
]
Retrieve all products belonging to a specific category
curl -X GET https://api.kiototeteria.com/products/category/1
[
{
"id": 1,
"name": "Matcha Green Tea",
"slug": "matcha-green-tea",
"description": "Premium organic matcha green tea from Japan",
"price": "12.99",
"isActive": true,
"categoryId": 1,
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Jasmine Tea",
"slug": "jasmine-tea",
"description": "Fragrant jasmine tea with delicate floral notes",
"price": "9.99",
"isActive": true,
"categoryId": 1,
"createdAt": "2024-01-14T09:20:00Z",
"updatedAt": "2024-01-14T09:20:00Z"
}
]
Show Product properties
curl -X GET https://api.kiototeteria.com/products/category/1
[
{
"id": 1,
"name": "Matcha Green Tea",
"slug": "matcha-green-tea",
"description": "Premium organic matcha green tea from Japan",
"price": "12.99",
"isActive": true,
"categoryId": 1,
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Jasmine Tea",
"slug": "jasmine-tea",
"description": "Fragrant jasmine tea with delicate floral notes",
"price": "9.99",
"isActive": true,
"categoryId": 1,
"createdAt": "2024-01-14T09:20:00Z",
"updatedAt": "2024-01-14T09:20:00Z"
}
]