Overview
The Testimonials API provides access to validated visitor feedback and reviews. Only testimonials that have been approved by zoo staff are returned through this public API endpoint.Get Validated Testimonials
Returns a list of all validated testimonials from zoo visitors. Testimonials are sorted by creation date in descending order (newest first).
Response Fields
Indicates if the request was successful
Array of validated testimonial objects
Unique identifier for the testimonial
Visitor’s pseudonym/nickname (max 100 characters)
The testimonial message content
Rating from 1 to 5 stars
Status of the testimonial (always “validated” for this endpoint)
Timestamp when the testimonial was created (ISO 8601 format)
Timestamp when the testimonial was validated by staff
Timestamp of the last update to the testimonial
Example Request
Example Response
Rating System
All ratings are on a scale of 1 to 5, where:
- 5 stars = Excellent
- 4 stars = Very Good
- 3 stars = Good
- 2 stars = Fair
- 1 star = Poor
Display Ratings
Testimonial Status
Testimonials go through a validation process before appearing in the public API:- Pending - Submitted by visitors but not yet reviewed
- Validated - Approved by staff and visible through this API
- Rejected - Not approved for public display
Only testimonials with
status: "validated" are returned by this endpoint. This ensures all public feedback is appropriate and genuine.Use Cases
Display on Homepage
Show recent testimonials or highest-rated reviews on your homepage:Calculate Average Rating
Determine the overall visitor satisfaction:Error Responses
Resource Not Found
When the testimonials endpoint is not available:404 Not Found
Notes
Pseudonyms are limited to 100 characters and may be moderated by staff before validation to ensure appropriateness.
Testimonials are returned in descending order by creation date, so the most recent feedback appears first in the array.
The API does not support filtering or pagination at this time. All validated testimonials are returned in a single response.