GET /api/v1/salons/:id/reviews
List of reviews for a salon. Public endpoint. Supports pagination and sorting.
Query params
| Parameter | Description |
|---|---|
page | Page number (default 1) |
sort | Sort order: newest (default) |
Request
GET /api/v1/salons/:id/reviews?page=1&sort=newest
Response 200
{
"success": true,
"status": "200",
"message": "Reviews retrieved successfully",
"errors": null,
"data": {
"reviews": [
{
"id": "uuid",
"rating": 5,
"body": "Great master!",
"client_name": "Ivan P.",
"master_name": "Ion Popescu",
"created_at": "2026-04-05T14:30:00Z"
}
],
"meta": {
"total": 42,
"page": 1,
"per_page": 10
}
}
}
Reviews are created via
POST /api/v1/appointments/:id/reviewafter an appointment is completed. See Appointments.