FindDoc
Sign in with Google — first sign-in creates your free FindDoc account. Get an API key

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=10
Response200 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

ParameterTypeDescription
idrequiredstringClinic id from the path segment.
limitintegerPage size. Defaults to 25, maximum 100.
offsetintegerZero-based offset for pagination. Defaults to 0.

Try it

Live request
Sign in with Google — first sign-in creates your free FindDoc account to run live requests against your account's rate limit.