Customer testimonial with author information, company, position, message, rating, avatar, and featured status. Used for testimonials sections, review displays, and customer feedback showcases.
https://api.mockly.codes/testimonials?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/testimonialsGet a collection of testimonials
/social/testimonials/testimonials/:idGet a single testimonial by ID
/social/testimonials/:id/testimonials/metaGet resource metadata and schema
/social/testimonials/metaThe 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/testimonials?q=laptopGET https://api.mockly.codes/testimonials?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 testimonials
fetch('https://api.mockly.codes/testimonials?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/testimonials?count=10'
)
data = response.json()curl "https://api.mockly.codes/testimonials?count=10"fetch('https://api.mockly.codes/testimonials?nocache=true')idintegerUnique identifier for the testimonial
random_intnamestringFull name of the person giving the testimonial
namepositionstringJob title or position of the testimonial author
jobcompanystringCompany or organization the testimonial author works for
companymessagestringTestimonial text or quote
paragraphratingnumberRating given, typically on a scale of 1-5
ratingavatarstringURL to the testimonial author's photo
avatarurifeaturedbooleanWhether this testimonial is featured and should be prominently displayed
booleancreated_atstringTimestamp when the testimonial was created
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