Search for Procedures
Overview
Let’s first try searching for relevant procedures through the Procedures reference endpoint. We can fuzzy search for the procedure using the search
parameter.
https://api.ribbonhealth.com/v1/procedures?search=colonoscopy
This returns a list of relevant procedures, including the UUID for diagnostic colonoscopy
. We can also search for this procedure by its CPT code (45378) using the procedure_code
parameter.
https://api.ribbonhealth.com/v1/procedures?procedure_code=45378
Search for Providers by Procedure
Once we've identified the correct Ribbon Procedure UUID from the reference endpoint, we can use the procedure_ids
to search for providers that perform the specific procedure.
To search for providers in Denver that perform colonoscopies, let's perform the following API Request:
https://api.ribbonhealth.com/v1/custom/providers?procedure_ids=8460eecc-371c-4dc4-bd7f-3beaeda8ced4&distance=25&address=Denver
Updated about 1 year ago