count and cursor to page through large result sets.
Request
GET https://api.clinikapi.com/v1/patients
Headers
Your ClinikAPI secret key (
clk_live_* or clk_test_*).Query Parameters
Filter by name using a partial, case-insensitive match against first name and last name.
Filter by email address (exact match).
Filter by phone number (exact match).
Filter by gender. One of:
male, female, other, unknown.Filter by date of birth in
YYYY-MM-DD format.Filter by active status (
true or false).Number of results per page. Default:
20. Maximum: 100.Opaque pagination cursor from the previous response’s
data.cursor field.Response
Returns200 OK with a paginated list of patients.
Array of patient objects matching the search criteria.
Total number of patients matching the search, across all pages.
Cursor to pass in the next request to retrieve the following page.
null when there are no more results.true if there are additional pages of results.Standard response metadata including
requestId, timestamp, status, and rate-limit fields.