← v1 API reference
Clinics
Endpoint
List clinic reviews
Paginated reviews for a clinic, addressed by id in the path, with an aggregate block: the average rating, total count, and a per-dimension breakdown. A clinic with no reviews returns avgRating: null and zero counts. Unknown ids return 404 not_found.
GET/api/v1/clinics/{id}/reviews
curl https://finddoc-ten.vercel.app/api/v1/clinics/92a39274-7f56-4d18-a93d-ba498508249e/reviews \
-G \
-H "Authorization: Bearer fd_test_xxxx…" \
-d limit=10Response200 OK
{
"clinicId": "92a39274-7f56-4d18-a93d-ba498508249e",
"aggregate": {
"avgRating": 4.3,
"count": 27,
"byDimension": [
{
"dimension": "wait_time",
"avgRating": 3.9,
"count": 21
},
{
"dimension": "staff",
"avgRating": 4.6,
"count": 24
}
]
},
"reviews": [
{
"author": "Priya S.",
"rating": 5,
"text": "Front desk was friendly and the wait was short.",
"date": "2026-03-22"
}
],
"total": 27,
"count": 1
}Parameters
| Parameter | Type | Description |
|---|---|---|
| idrequired | string | Clinic id from the path segment. |
| limit | integer | Page size. Defaults to 25, maximum 100. |
| offset | integer | Zero-based offset for pagination. Defaults to 0. |
Try it
Live requestSign in with Google — first sign-in creates your free FindDoc account to run live requests against your account's rate limit.