Retrieves a list of products with pagination.
This endpoint allows you to fetch products with optional pagination.
skip
: Number of records to skip (default: 0)take
: Number of records to take (default: 10){
"data": [
{
"id": "prod_123456",
"name": "Premium Widget",
"description": "High-quality widget for all your needs",
"price": "99.99",
"images": [
"https://storage.example.com/images/file1.jpg",
"https://storage.example.com/images/file2.jpg"
],
"createdAt": "2024-03-20T10:00:00Z"
}
],
"total": 100,
"skip": 0,
"take": 10
}
Your secret API key. Keep this secure and never expose it in client-side code.
Return all products.