Clinics are the physical locations where doctors see patients. Every appointment and prescription is scoped to a clinic, making clinics a foundational resource in Oasis Liquido. The list endpoint supports proximity search via latitude and longitude, returning aDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/FlasheyEstudi/Oasis-Liquido/llms.txt
Use this file to discover all available pages before exploring further.
distance_in_meters field so clients can sort by nearest location.
GET /api/v1/clinics
Return a list of active clinics. Passlat and lng to enable proximity sorting; the response will include distance_in_meters for each clinic.
Query parameters
Latitude of the user’s current position for proximity search.
Longitude of the user’s current position for proximity search.
Page number.
Results per page.
curl example
POST /api/v1/clinics
Create a new clinic record. Requires theadmin role.
Request body
The clinic’s display name.
Full street address of the clinic.
Latitude coordinate (WGS 84).
Longitude coordinate (WGS 84).
Optional contact phone number.
curl example
GET /api/v1/clinics/:id
Retrieve a single clinic by its UUID. The response includes an array of the clinic’s associated doctors in thedoctors field.
Path parameters
UUID of the clinic.
curl example
Clinic response fields
UUID of the clinic.
Clinic display name.
Full street address.
Latitude coordinate.
Longitude coordinate.
Contact phone number.
Whether the clinic is currently active and accepting appointments.
Distance from the requested
lat/lng coordinates. Only present when proximity parameters are supplied.Array of doctor profiles associated with this clinic. Only present on the single-clinic endpoint.
ISO 8601 creation timestamp.
ISO 8601 last-updated timestamp.