List Reviews
List reviews of any store by store domain/url.
As a partner you have access to list any reviews that a Fera store is using.
Normally this information is available via our public api (Fera.js) but that requires you to know the store's public key.
This API returns data in the same format as the public API (Fera.js) but only requires the store domain/url.
This list of reviews includes all reviews for all products, plus store (business) reviews that aren't specific to a product.
get
https://api.fera.ai/v3/partners
/stores/products/reviews
List All Product Reviews
CURL
curl --request GET \
--url https://api.fera.ai/v3/partners/stores/products/reviews?domain=example.com \
--header 'Api-Key: YOUR_PARTNER_API_KEY'
# See JSON response examples above
get
https://api.fera.ai/v3/partners
/stores/products/{id}/reviews
List Product Reviews
CURL
curl --request GET \
--url https://api.fera.ai/v3/partners/stores/products/123456789/reviews?domain=example.com \
--header 'Api-Key: YOUR_PARTNER_API_KEY'
# See JSON response examples above
If the store does not exist in Fera then you will receive a Bad Request response (400 status code).
Last modified 4mo ago