The Pharmacies API exposes the network of pharmacies registered on the Oasis Liquido platform. It powers the Aura Pharmacy Map feature, which shows users nearby locations with available medicines. Proximity search returns 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 or filter by distance. The single-pharmacy endpoint also returns live inventory via the available_medicines array.
GET /api/v1/pharmacies
Return a list of active pharmacies. Passlat and lng to enable proximity ordering; distance_in_meters will be included in each result.
Query parameters
Latitude of the user’s position for proximity search.
Longitude of the user’s position for proximity search.
Page number.
Results per page.
curl example
GET /api/v1/pharmacies/:id
Retrieve a single pharmacy by UUID, including its current medicine inventory in theavailable_medicines array.
Path parameters
UUID of the pharmacy.
curl example
POST /api/v1/pharmacies
Create a new pharmacy record. Requires theadmin role.
Request body
The pharmacy’s display name.
Full street address.
Latitude coordinate (WGS 84).
Longitude coordinate (WGS 84).
Optional contact phone number.
curl example
Pharmacy response fields
UUID of the pharmacy.
Pharmacy display name.
Full street address.
Latitude coordinate.
Longitude coordinate.
Contact phone number.
Whether the pharmacy is currently operational.
Distance from the supplied
lat/lng coordinates. Only present when proximity parameters are included in the request.Real-time inventory snapshot. Only present on the single-pharmacy endpoint.
ISO 8601 creation timestamp.
ISO 8601 last-updated timestamp.