Custom Pharmacy Search
POST
https://staging-api.qualiphy.me/api/custom_pharmacy_searchThis endpoint is used to search for any custom pharmacy in the US based on search criteria such as State, City, Pharmacy name, or Zip code. This allows clinics and patients to find the pharmacy of their choice.
Parameters
api_key string
RequiredAPI key for authentication
city string
OptionalCity
state string
OptionalState (capital abbreviation)
zip_code string
OptionalZIP code
pharmacy_name string
OptionalName or partial name of the pharmacy you are looking for.
You can enter the name or partial name of the pharmacy you are looking for. You can use the Partner Pharmacy List API to get pharmacy_name.
Response
200
400
401
Response Fields Explanation
| Field | Explanation |
|---|---|
| NCPDPID | This is the unique ID associated with each custom pharmacy |
| Name | This is the public name of the custom pharmacy |
| Address | This is the address of the pharmacy |
| Address2 | This is the address line 2 of the pharmacy (if applicable) |
| City | This is the city of the pharmacy |
| Zip | This is the Zip code of the pharmacy |
| Phone | This is the phone number on file for the pharmacy |
| Type | This is the pharmacy type (compound, retail, etc.) |
Example Request Payload:
Response Example
{
"http_code":200
"data":[
0:{
"NCPDPID":"2977784"
"Name":"CVS 16079 IN TARGET"
"Address":"4001 S MARYLAND PKWY"
"Address2":""
"City":"LAS VEGAS"
"State":"NV"
"Zip":"89119"
"Phone":"(702) 732-1840"
"Type":"Retail"
}
]
}