-
Notifications
You must be signed in to change notification settings - Fork 2
Description
I am encountering an issue with the /api/products endpoint of the YoFakeStoreAPI. When attempting to fetch product data from this endpoint, the response indicates that there are no products available.
Steps to Reproduce:
Make a GET request to the /api/products endpoint.
Receive a response with results: 0 and an empty data array.
Expected Behavior:
I expected the API to return a list of available products.
Actual Behavior:
The API response indicates that there are no products available, with results: 0 and an empty data array.
Additional Information:
API Endpoint: https://yofakestoreapi.onrender.com/api/products
Response:
{
"results": 0,
"paginationResult": {
"currentPage": 1,
"limit": 50,
"numberOfPages": 0
},
"data": []
}
This issue prevents the proper functioning of applications relying on this API endpoint for product data.
Please let me know if there are any further details needed to address this issue.