Customer product review with rating, title, body text, verified purchase status, helpful votes, and creation date. Used for e-commerce platforms, review systems, and product feedback management.
https://api.mockly.codes/reviews?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/reviewsGet a collection of reviews
/social/reviews/reviews/:idGet a single review by ID
/social/reviews/:id/reviews/metaGet resource metadata and schema
/social/reviews/metaAdditional aliases:
/product-reviews/v2/reviewsThe search feature allows you to filter results by searching for text across all or specific fields. Choose between ?q= or ?search= parameter names.
Search across all text fields:
GET https://api.mockly.codes/reviews?q=laptopGET https://api.mockly.codes/reviews?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 reviews
fetch('https://api.mockly.codes/reviews?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/reviews?count=10'
)
data = response.json()curl "https://api.mockly.codes/reviews?count=10"fetch('https://api.mockly.codes/reviews?nocache=true')idintegerrequiredUnique identifier for the review
random_intproduct_idintegerrequiredForeign key reference to the product being reviewed
random_intuser_idintegerrequiredForeign key reference to the user who wrote the review
random_intratingintegerrequiredRating from 1 to 5 stars
random_inttitlestringTitle or headline of the review
sentencebodystringDetailed review content or body text
paragraphverified_purchasebooleanWhether the reviewer is a verified purchaser of the product
booleanhelpful_countintegerNumber of users who found this review helpful
random_intcreated_atstringTimestamp when the review was posted
past_datedate-timecountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request